amazonka-inspector 1.4.2 → 1.4.3
raw patch · 38 files changed
+373/−651 lines, 38 filesdep ~amazonka-coredep ~amazonka-inspectordep ~amazonka-testPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core, amazonka-inspector, amazonka-test
API changes (from Hackage documentation)
Files
- README.md +2/−5
- amazonka-inspector.cabal +6/−9
- gen/Network/AWS/Inspector.hs +1/−4
- gen/Network/AWS/Inspector/AddAttributesToFindings.hs +3/−6
- gen/Network/AWS/Inspector/CreateAssessmentTarget.hs +3/−9
- gen/Network/AWS/Inspector/CreateAssessmentTemplate.hs +6/−14
- gen/Network/AWS/Inspector/CreateResourceGroup.hs +2/−7
- gen/Network/AWS/Inspector/DeleteAssessmentRun.hs +1/−2
- gen/Network/AWS/Inspector/DeleteAssessmentTarget.hs +1/−2
- gen/Network/AWS/Inspector/DeleteAssessmentTemplate.hs +1/−2
- gen/Network/AWS/Inspector/DescribeAssessmentRuns.hs +2/−4
- gen/Network/AWS/Inspector/DescribeAssessmentTargets.hs +3/−6
- gen/Network/AWS/Inspector/DescribeAssessmentTemplates.hs +3/−6
- gen/Network/AWS/Inspector/DescribeCrossAccountAccessRole.hs +3/−6
- gen/Network/AWS/Inspector/DescribeFindings.hs +2/−4
- gen/Network/AWS/Inspector/DescribeResourceGroups.hs +2/−4
- gen/Network/AWS/Inspector/DescribeRulesPackages.hs +2/−4
- gen/Network/AWS/Inspector/GetTelemetryMetadata.hs +2/−4
- gen/Network/AWS/Inspector/ListAssessmentRunAgents.hs +6/−19
- gen/Network/AWS/Inspector/ListAssessmentRuns.hs +8/−23
- gen/Network/AWS/Inspector/ListAssessmentTargets.hs +7/−21
- gen/Network/AWS/Inspector/ListAssessmentTemplates.hs +8/−22
- gen/Network/AWS/Inspector/ListEventSubscriptions.hs +5/−16
- gen/Network/AWS/Inspector/ListFindings.hs +7/−20
- gen/Network/AWS/Inspector/ListRulesPackages.hs +4/−13
- gen/Network/AWS/Inspector/ListTagsForResource.hs +1/−2
- gen/Network/AWS/Inspector/PreviewAgents.hs +4/−13
- gen/Network/AWS/Inspector/RegisterCrossAccountAccessRole.hs +2/−6
- gen/Network/AWS/Inspector/RemoveAttributesFromFindings.hs +4/−9
- gen/Network/AWS/Inspector/SetTagsForResource.hs +2/−4
- gen/Network/AWS/Inspector/StartAssessmentRun.hs +3/−8
- gen/Network/AWS/Inspector/StopAssessmentRun.hs +1/−2
- gen/Network/AWS/Inspector/SubscribeToEvent.hs +2/−4
- gen/Network/AWS/Inspector/Types.hs +6/−13
- gen/Network/AWS/Inspector/Types/Product.hs +62/−158
- gen/Network/AWS/Inspector/UnsubscribeFromEvent.hs +2/−4
- gen/Network/AWS/Inspector/UpdateAssessmentTarget.hs +2/−4
- test/Test/AWS/Gen/Inspector.hs +192/−192
README.md view
@@ -8,17 +8,14 @@ ## Version -`1.4.2`+`1.4.3` ## Description Amazon Inspector -Amazon Inspector enables you to analyze the behavior of your AWS-resources and to identify potential security issues. For more-information, see-<http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>.+Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>. Documentation is available via [Hackage](http://hackage.haskell.org/package/amazonka-inspector) and the [AWS API Reference](https://aws.amazon.com/documentation/).
amazonka-inspector.cabal view
@@ -1,5 +1,5 @@ name: amazonka-inspector-version: 1.4.2+version: 1.4.3 synopsis: Amazon Inspector SDK. homepage: https://github.com/brendanhay/amazonka bug-reports: https://github.com/brendanhay/amazonka/issues@@ -15,10 +15,7 @@ description: Amazon Inspector - Amazon Inspector enables you to analyze the behavior of your AWS- resources and to identify potential security issues. For more- information, see- <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>.+ Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>. . The types from this library are intended to be used with <http://hackage.haskell.org/package/amazonka amazonka>, which provides@@ -86,7 +83,7 @@ , Network.AWS.Inspector.Types.Sum build-depends:- amazonka-core == 1.4.2.*+ amazonka-core == 1.4.3.* , base >= 4.7 && < 5 test-suite amazonka-inspector-test@@ -106,9 +103,9 @@ , Test.AWS.Inspector.Internal build-depends:- amazonka-core == 1.4.2.*- , amazonka-test == 1.4.2.*- , amazonka-inspector == 1.4.2.*+ amazonka-core == 1.4.3.*+ , amazonka-test == 1.4.3.*+ , amazonka-inspector == 1.4.3.* , base , bytestring , tasty
gen/Network/AWS/Inspector.hs view
@@ -13,10 +13,7 @@ -- -- Amazon Inspector ----- Amazon Inspector enables you to analyze the behavior of your AWS--- resources and to identify potential security issues. For more--- information, see--- <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>.+-- Amazon Inspector enables you to analyze the behavior of your AWS resources and to identify potential security issues. For more information, see <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_introduction.html Amazon Inspector User Guide>. module Network.AWS.Inspector ( -- * Service Configuration
gen/Network/AWS/Inspector/AddAttributesToFindings.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Assigns attributes (key and value pairs) to the findings that are--- specified by the ARNs of the findings.+-- Assigns attributes (key and value pairs) to the findings that are specified by the ARNs of the findings. module Network.AWS.Inspector.AddAttributesToFindings ( -- * Creating a Request@@ -66,8 +65,7 @@ , _aatfAttributes = mempty } --- | The ARNs that specify the findings that you want to assign attributes--- to.+-- | The ARNs that specify the findings that you want to assign attributes to. aatfFindingARNs :: Lens' AddAttributesToFindings (NonEmpty Text) aatfFindingARNs = lens _aatfFindingARNs (\ s a -> s{_aatfFindingARNs = a}) . _List1; @@ -139,8 +137,7 @@ aatfrsResponseStatus :: Lens' AddAttributesToFindingsResponse Int aatfrsResponseStatus = lens _aatfrsResponseStatus (\ s a -> s{_aatfrsResponseStatus = a}); --- | Attribute details that cannot be described. An error code is provided--- for each failed item.+-- | Attribute details that cannot be described. An error code is provided for each failed item. aatfrsFailedItems :: Lens' AddAttributesToFindingsResponse (HashMap Text FailedItemDetails) aatfrsFailedItems = lens _aatfrsFailedItems (\ s a -> s{_aatfrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/CreateAssessmentTarget.hs view
@@ -18,11 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Creates a new assessment target using the ARN of the resource group that--- is generated by < CreateResourceGroup>. You can create up to 50--- assessment targets per AWS account. You can run up to 500 concurrent--- agents per AWS account. For more information, see--- <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html Amazon Inspector Assessment Targets>.+-- Creates a new assessment target using the ARN of the resource group that is generated by < CreateResourceGroup>. You can create up to 50 assessment targets per AWS account. You can run up to 500 concurrent agents per AWS account. For more information, see <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html Amazon Inspector Assessment Targets>. module Network.AWS.Inspector.CreateAssessmentTarget ( -- * Creating a Request@@ -70,13 +66,11 @@ , _catResourceGroupARN = pResourceGroupARN_ } --- | The user-defined name that identifies the assessment target that you--- want to create. The name must be unique within the AWS account.+-- | The user-defined name that identifies the assessment target that you want to create. The name must be unique within the AWS account. catAssessmentTargetName :: Lens' CreateAssessmentTarget Text catAssessmentTargetName = lens _catAssessmentTargetName (\ s a -> s{_catAssessmentTargetName = a}); --- | The ARN that specifies the resource group that is used to create the--- assessment target.+-- | The ARN that specifies the resource group that is used to create the assessment target. catResourceGroupARN :: Lens' CreateAssessmentTarget Text catResourceGroupARN = lens _catResourceGroupARN (\ s a -> s{_catResourceGroupARN = a});
gen/Network/AWS/Inspector/CreateAssessmentTemplate.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Creates an assessment template for the assessment target that is--- specified by the ARN of the assessment target.+-- Creates an assessment template for the assessment target that is specified by the ARN of the assessment target. module Network.AWS.Inspector.CreateAssessmentTemplate ( -- * Creating a Request@@ -83,30 +82,23 @@ , _catRulesPackageARNs = mempty } --- | The user-defined attributes that are assigned to every finding that is--- generated by the assessment run that uses this assessment template.+-- | The user-defined attributes that are assigned to every finding that is generated by the assessment run that uses this assessment template. catUserAttributesForFindings :: Lens' CreateAssessmentTemplate [Attribute] catUserAttributesForFindings = lens _catUserAttributesForFindings (\ s a -> s{_catUserAttributesForFindings = a}) . _Default . _Coerce; --- | The ARN that specifies the assessment target for which you want to--- create the assessment template.+-- | The ARN that specifies the assessment target for which you want to create the assessment template. catAssessmentTargetARN :: Lens' CreateAssessmentTemplate Text catAssessmentTargetARN = lens _catAssessmentTargetARN (\ s a -> s{_catAssessmentTargetARN = a}); --- | The user-defined name that identifies the assessment template that you--- want to create. You can create several assessment templates for an--- assessment target. The names of the assessment templates that correspond--- to a particular assessment target must be unique.+-- | The user-defined name that identifies the assessment template that you want to create. You can create several assessment templates for an assessment target. The names of the assessment templates that correspond to a particular assessment target must be unique. catAssessmentTemplateName :: Lens' CreateAssessmentTemplate Text catAssessmentTemplateName = lens _catAssessmentTemplateName (\ s a -> s{_catAssessmentTemplateName = a}); --- | The duration of the assessment run in seconds. The default value is 3600--- seconds (one hour).+-- | The duration of the assessment run in seconds. The default value is 3600 seconds (one hour). catDurationInSeconds :: Lens' CreateAssessmentTemplate Natural catDurationInSeconds = lens _catDurationInSeconds (\ s a -> s{_catDurationInSeconds = a}) . _Nat; --- | The ARNs that specify the rules packages that you want to attach to the--- assessment template.+-- | The ARNs that specify the rules packages that you want to attach to the assessment template. catRulesPackageARNs :: Lens' CreateAssessmentTemplate [Text] catRulesPackageARNs = lens _catRulesPackageARNs (\ s a -> s{_catRulesPackageARNs = a}) . _Coerce;
gen/Network/AWS/Inspector/CreateResourceGroup.hs view
@@ -18,11 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Creates a resource group using the specified set of tags (key and value--- pairs) that are used to select the EC2 instances to be included in an--- Amazon Inspector assessment target. The created resource group is then--- used to create an Amazon Inspector assessment target. For more--- information, see < CreateAssessmentTarget>.+-- Creates a resource group using the specified set of tags (key and value pairs) that are used to select the EC2 instances to be included in an Amazon Inspector assessment target. The created resource group is then used to create an Amazon Inspector assessment target. For more information, see < CreateAssessmentTarget>. module Network.AWS.Inspector.CreateResourceGroup ( -- * Creating a Request@@ -64,8 +60,7 @@ { _crgResourceGroupTags = _List1 # pResourceGroupTags_ } --- | A collection of keys and an array of possible values,--- \'[{\"key\":\"key1\",\"values\":[\"Value1\",\"Value2\"]},{\"key\":\"Key2\",\"values\":[\"Value3\"]}]\'.+-- | A collection of keys and an array of possible values, \'[{\"key\":\"key1\",\"values\":[\"Value1\",\"Value2\"]},{\"key\":\"Key2\",\"values\":[\"Value3\"]}]\'. -- -- For example,\'[{\"key\":\"Name\",\"values\":[\"TestEC2Instance\"]}]\'. crgResourceGroupTags :: Lens' CreateResourceGroup (NonEmpty ResourceGroupTag)
gen/Network/AWS/Inspector/DeleteAssessmentRun.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the assessment run that is specified by the ARN of the--- assessment run.+-- Deletes the assessment run that is specified by the ARN of the assessment run. module Network.AWS.Inspector.DeleteAssessmentRun ( -- * Creating a Request
gen/Network/AWS/Inspector/DeleteAssessmentTarget.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the assessment target that is specified by the ARN of the--- assessment target.+-- Deletes the assessment target that is specified by the ARN of the assessment target. module Network.AWS.Inspector.DeleteAssessmentTarget ( -- * Creating a Request
gen/Network/AWS/Inspector/DeleteAssessmentTemplate.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Deletes the assessment template that is specified by the ARN of the--- assessment template.+-- Deletes the assessment template that is specified by the ARN of the assessment template. module Network.AWS.Inspector.DeleteAssessmentTemplate ( -- * Creating a Request
gen/Network/AWS/Inspector/DescribeAssessmentRuns.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the assessment runs that are specified by the ARNs of the--- assessment runs.+-- Describes the assessment runs that are specified by the ARNs of the assessment runs. module Network.AWS.Inspector.DescribeAssessmentRuns ( -- * Creating a Request@@ -139,8 +138,7 @@ darrsAssessmentRuns :: Lens' DescribeAssessmentRunsResponse [AssessmentRun] darrsAssessmentRuns = lens _darrsAssessmentRuns (\ s a -> s{_darrsAssessmentRuns = a}) . _Coerce; --- | Assessment run details that cannot be described. An error code is--- provided for each failed item.+-- | Assessment run details that cannot be described. An error code is provided for each failed item. darrsFailedItems :: Lens' DescribeAssessmentRunsResponse (HashMap Text FailedItemDetails) darrsFailedItems = lens _darrsFailedItems (\ s a -> s{_darrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/DescribeAssessmentTargets.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the assessment targets that are specified by the ARNs of the--- assessment targets.+-- Describes the assessment targets that are specified by the ARNs of the assessment targets. module Network.AWS.Inspector.DescribeAssessmentTargets ( -- * Creating a Request@@ -62,8 +61,7 @@ { _datAssessmentTargetARNs = _List1 # pAssessmentTargetARNs_ } --- | The ARNs that specifies the assessment targets that you want to--- describe.+-- | The ARNs that specifies the assessment targets that you want to describe. datAssessmentTargetARNs :: Lens' DescribeAssessmentTargets (NonEmpty Text) datAssessmentTargetARNs = lens _datAssessmentTargetARNs (\ s a -> s{_datAssessmentTargetARNs = a}) . _List1; @@ -141,8 +139,7 @@ drsAssessmentTargets :: Lens' DescribeAssessmentTargetsResponse [AssessmentTarget] drsAssessmentTargets = lens _drsAssessmentTargets (\ s a -> s{_drsAssessmentTargets = a}) . _Coerce; --- | Assessment target details that cannot be described. An error code is--- provided for each failed item.+-- | Assessment target details that cannot be described. An error code is provided for each failed item. drsFailedItems :: Lens' DescribeAssessmentTargetsResponse (HashMap Text FailedItemDetails) drsFailedItems = lens _drsFailedItems (\ s a -> s{_drsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/DescribeAssessmentTemplates.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the assessment templates that are specified by the ARNs of the--- assessment templates.+-- Describes the assessment templates that are specified by the ARNs of the assessment templates. module Network.AWS.Inspector.DescribeAssessmentTemplates ( -- * Creating a Request@@ -62,8 +61,7 @@ { _datAssessmentTemplateARNs = _List1 # pAssessmentTemplateARNs_ } --- | The ARN that specifiesthe assessment templates that you want to--- describe.+-- | The ARN that specifiesthe assessment templates that you want to describe. datAssessmentTemplateARNs :: Lens' DescribeAssessmentTemplates (NonEmpty Text) datAssessmentTemplateARNs = lens _datAssessmentTemplateARNs (\ s a -> s{_datAssessmentTemplateARNs = a}) . _List1; @@ -141,8 +139,7 @@ datrsAssessmentTemplates :: Lens' DescribeAssessmentTemplatesResponse [AssessmentTemplate] datrsAssessmentTemplates = lens _datrsAssessmentTemplates (\ s a -> s{_datrsAssessmentTemplates = a}) . _Coerce; --- | Assessment template details that cannot be described. An error code is--- provided for each failed item.+-- | Assessment template details that cannot be described. An error code is provided for each failed item. datrsFailedItems :: Lens' DescribeAssessmentTemplatesResponse (HashMap Text FailedItemDetails) datrsFailedItems = lens _datrsFailedItems (\ s a -> s{_datrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/DescribeCrossAccountAccessRole.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the IAM role that enables Amazon Inspector to access your AWS--- account.+-- Describes the IAM role that enables Amazon Inspector to access your AWS account. module Network.AWS.Inspector.DescribeCrossAccountAccessRole ( -- * Creating a Request@@ -128,13 +127,11 @@ dcaarrsResponseStatus :: Lens' DescribeCrossAccountAccessRoleResponse Int dcaarrsResponseStatus = lens _dcaarrsResponseStatus (\ s a -> s{_dcaarrsResponseStatus = a}); --- | The ARN that specifies the IAM role that Amazon Inspector uses to access--- your AWS account.+-- | The ARN that specifies the IAM role that Amazon Inspector uses to access your AWS account. dcaarrsRoleARN :: Lens' DescribeCrossAccountAccessRoleResponse Text dcaarrsRoleARN = lens _dcaarrsRoleARN (\ s a -> s{_dcaarrsRoleARN = a}); --- | A Boolean value that specifies whether the IAM role has the necessary--- policies attached to enable Amazon Inspector to access your AWS account.+-- | A Boolean value that specifies whether the IAM role has the necessary policies attached to enable Amazon Inspector to access your AWS account. dcaarrsValid :: Lens' DescribeCrossAccountAccessRoleResponse Bool dcaarrsValid = lens _dcaarrsValid (\ s a -> s{_dcaarrsValid = a});
gen/Network/AWS/Inspector/DescribeFindings.hs view
@@ -66,8 +66,7 @@ , _dfFindingARNs = _List1 # pFindingARNs_ } --- | The locale into which you want to translate a finding description,--- recommendation, and the short description that identifies the finding.+-- | The locale into which you want to translate a finding description, recommendation, and the short description that identifies the finding. dfLocale :: Lens' DescribeFindings (Maybe Locale) dfLocale = lens _dfLocale (\ s a -> s{_dfLocale = a}); @@ -145,8 +144,7 @@ dfrsFindings :: Lens' DescribeFindingsResponse [Finding] dfrsFindings = lens _dfrsFindings (\ s a -> s{_dfrsFindings = a}) . _Coerce; --- | Finding details that cannot be described. An error code is provided for--- each failed item.+-- | Finding details that cannot be described. An error code is provided for each failed item. dfrsFailedItems :: Lens' DescribeFindingsResponse (HashMap Text FailedItemDetails) dfrsFailedItems = lens _dfrsFailedItems (\ s a -> s{_dfrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/DescribeResourceGroups.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the resource groups that are specified by the ARNs of the--- resource groups.+-- Describes the resource groups that are specified by the ARNs of the resource groups. module Network.AWS.Inspector.DescribeResourceGroups ( -- * Creating a Request@@ -139,8 +138,7 @@ drgrsResourceGroups :: Lens' DescribeResourceGroupsResponse [ResourceGroup] drgrsResourceGroups = lens _drgrsResourceGroups (\ s a -> s{_drgrsResourceGroups = a}) . _Coerce; --- | Resource group details that cannot be described. An error code is--- provided for each failed item.+-- | Resource group details that cannot be described. An error code is provided for each failed item. drgrsFailedItems :: Lens' DescribeResourceGroupsResponse (HashMap Text FailedItemDetails) drgrsFailedItems = lens _drgrsFailedItems (\ s a -> s{_drgrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/DescribeRulesPackages.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Describes the rules packages that are specified by the ARNs of the rules--- packages.+-- Describes the rules packages that are specified by the ARNs of the rules packages. module Network.AWS.Inspector.DescribeRulesPackages ( -- * Creating a Request@@ -148,8 +147,7 @@ drprsRulesPackages :: Lens' DescribeRulesPackagesResponse [RulesPackage] drprsRulesPackages = lens _drprsRulesPackages (\ s a -> s{_drprsRulesPackages = a}) . _Coerce; --- | Rules package details that cannot be described. An error code is--- provided for each failed item.+-- | Rules package details that cannot be described. An error code is provided for each failed item. drprsFailedItems :: Lens' DescribeRulesPackagesResponse (HashMap Text FailedItemDetails) drprsFailedItems = lens _drprsFailedItems (\ s a -> s{_drprsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/GetTelemetryMetadata.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Information about the data that is collected for the specified--- assessment run.+-- Information about the data that is collected for the specified assessment run. module Network.AWS.Inspector.GetTelemetryMetadata ( -- * Creating a Request@@ -61,8 +60,7 @@ { _gtmAssessmentRunARN = pAssessmentRunARN_ } --- | The ARN that specifies the assessment run that has the telemetry data--- that you want to obtain.+-- | The ARN that specifies the assessment run that has the telemetry data that you want to obtain. gtmAssessmentRunARN :: Lens' GetTelemetryMetadata Text gtmAssessmentRunARN = lens _gtmAssessmentRunARN (\ s a -> s{_gtmAssessmentRunARN = a});
gen/Network/AWS/Inspector/ListAssessmentRunAgents.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists the agents of the assessment runs that are specified by the ARNs--- of the assessment runs.+-- Lists the agents of the assessment runs that are specified by the ARNs of the assessment runs. module Network.AWS.Inspector.ListAssessmentRunAgents ( -- * Creating a Request@@ -77,26 +76,17 @@ , _laraAssessmentRunARN = pAssessmentRunARN_ } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the--- __ListAssessmentRunAgents__ action. Subsequent calls to the action fill--- __nextToken__ in the request with the value of __NextToken__ from the--- previous response to continue listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListAssessmentRunAgents__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. laraNextToken :: Lens' ListAssessmentRunAgents (Maybe Text) laraNextToken = lens _laraNextToken (\ s a -> s{_laraNextToken = a}); --- | You can use this parameter to specify a subset of data to be included in--- the action\'s response.+-- | You can use this parameter to specify a subset of data to be included in the action\'s response. ----- For a record to match a filter, all specified filter attributes must--- match. When multiple values are specified for a filter attribute, any of--- the values can match.+-- For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match. laraFilter :: Lens' ListAssessmentRunAgents (Maybe AgentFilter) laraFilter = lens _laraFilter (\ s a -> s{_laraFilter = a}); --- | You can use this parameter to indicate the maximum number of items that--- you want in the response. The default value is 10. The maximum value is--- 500.+-- | You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 10. The maximum value is 500. laraMaxResults :: Lens' ListAssessmentRunAgents (Maybe Int) laraMaxResults = lens _laraMaxResults (\ s a -> s{_laraMaxResults = a}); @@ -170,10 +160,7 @@ , _lararsAssessmentRunAgents = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. lararsNextToken :: Lens' ListAssessmentRunAgentsResponse (Maybe Text) lararsNextToken = lens _lararsNextToken (\ s a -> s{_lararsNextToken = a});
gen/Network/AWS/Inspector/ListAssessmentRuns.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists the assessment runs that correspond to the assessment templates--- that are specified by the ARNs of the assessment templates.+-- Lists the assessment runs that correspond to the assessment templates that are specified by the ARNs of the assessment templates. module Network.AWS.Inspector.ListAssessmentRuns ( -- * Creating a Request@@ -76,31 +75,21 @@ , _larMaxResults = Nothing } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the __ListAssessmentRuns__--- action. Subsequent calls to the action fill __nextToken__ in the request--- with the value of __NextToken__ from the previous response to continue--- listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListAssessmentRuns__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. larNextToken :: Lens' ListAssessmentRuns (Maybe Text) larNextToken = lens _larNextToken (\ s a -> s{_larNextToken = a}); --- | You can use this parameter to specify a subset of data to be included in--- the action\'s response.+-- | You can use this parameter to specify a subset of data to be included in the action\'s response. ----- For a record to match a filter, all specified filter attributes must--- match. When multiple values are specified for a filter attribute, any of--- the values can match.+-- For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match. larFilter :: Lens' ListAssessmentRuns (Maybe AssessmentRunFilter) larFilter = lens _larFilter (\ s a -> s{_larFilter = a}); --- | The ARNs that specify the assessment templates whose assessment runs you--- want to list.+-- | The ARNs that specify the assessment templates whose assessment runs you want to list. larAssessmentTemplateARNs :: Lens' ListAssessmentRuns [Text] larAssessmentTemplateARNs = lens _larAssessmentTemplateARNs (\ s a -> s{_larAssessmentTemplateARNs = a}) . _Default . _Coerce; --- | You can use this parameter to indicate the maximum number of items that--- you want in the response. The default value is 10. The maximum value is--- 500.+-- | You can use this parameter to indicate the maximum number of items that you want in the response. The default value is 10. The maximum value is 500. larMaxResults :: Lens' ListAssessmentRuns (Maybe Int) larMaxResults = lens _larMaxResults (\ s a -> s{_larMaxResults = a}); @@ -171,10 +160,7 @@ , _larrsAssessmentRunARNs = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. larrsNextToken :: Lens' ListAssessmentRunsResponse (Maybe Text) larrsNextToken = lens _larrsNextToken (\ s a -> s{_larrsNextToken = a}); @@ -182,8 +168,7 @@ larrsResponseStatus :: Lens' ListAssessmentRunsResponse Int larrsResponseStatus = lens _larrsResponseStatus (\ s a -> s{_larrsResponseStatus = a}); --- | A list of ARNs that specifies the assessment runs that are returned by--- the action.+-- | A list of ARNs that specifies the assessment runs that are returned by the action. larrsAssessmentRunARNs :: Lens' ListAssessmentRunsResponse [Text] larrsAssessmentRunARNs = lens _larrsAssessmentRunARNs (\ s a -> s{_larrsAssessmentRunARNs = a}) . _Coerce;
gen/Network/AWS/Inspector/ListAssessmentTargets.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists the ARNs of the assessment targets within this AWS account. For--- more information about assessment targets, see--- <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html Amazon Inspector Assessment Targets>.+-- Lists the ARNs of the assessment targets within this AWS account. For more information about assessment targets, see <http://docs.aws.amazon.com/inspector/latest/userguide/inspector_applications.html Amazon Inspector Assessment Targets>. module Network.AWS.Inspector.ListAssessmentTargets ( -- * Creating a Request@@ -72,25 +70,17 @@ , _lMaxResults = Nothing } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the--- __ListAssessmentTargets__ action. Subsequent calls to the action fill--- __nextToken__ in the request with the value of __NextToken__ from the--- previous response to continue listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListAssessmentTargets__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. lNextToken :: Lens' ListAssessmentTargets (Maybe Text) lNextToken = lens _lNextToken (\ s a -> s{_lNextToken = a}); --- | You can use this parameter to specify a subset of data to be included in--- the action\'s response.+-- | You can use this parameter to specify a subset of data to be included in the action\'s response. ----- For a record to match a filter, all specified filter attributes must--- match. When multiple values are specified for a filter attribute, any of--- the values can match.+-- For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match. lFilter :: Lens' ListAssessmentTargets (Maybe AssessmentTargetFilter) lFilter = lens _lFilter (\ s a -> s{_lFilter = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. lMaxResults :: Lens' ListAssessmentTargets (Maybe Int) lMaxResults = lens _lMaxResults (\ s a -> s{_lMaxResults = a}); @@ -159,10 +149,7 @@ , _lrsAssessmentTargetARNs = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. lrsNextToken :: Lens' ListAssessmentTargetsResponse (Maybe Text) lrsNextToken = lens _lrsNextToken (\ s a -> s{_lrsNextToken = a}); @@ -170,8 +157,7 @@ lrsResponseStatus :: Lens' ListAssessmentTargetsResponse Int lrsResponseStatus = lens _lrsResponseStatus (\ s a -> s{_lrsResponseStatus = a}); --- | A list of ARNs that specifies the assessment targets that are returned--- by the action.+-- | A list of ARNs that specifies the assessment targets that are returned by the action. lrsAssessmentTargetARNs :: Lens' ListAssessmentTargetsResponse [Text] lrsAssessmentTargetARNs = lens _lrsAssessmentTargetARNs (\ s a -> s{_lrsAssessmentTargetARNs = a}) . _Coerce;
gen/Network/AWS/Inspector/ListAssessmentTemplates.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists the assessment templates that correspond to the assessment targets--- that are specified by the ARNs of the assessment targets.+-- Lists the assessment templates that correspond to the assessment targets that are specified by the ARNs of the assessment targets. module Network.AWS.Inspector.ListAssessmentTemplates ( -- * Creating a Request@@ -76,30 +75,21 @@ , _latAssessmentTargetARNs = Nothing } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the--- __ListAssessmentTemplates__ action. Subsequent calls to the action fill--- __nextToken__ in the request with the value of __NextToken__ from the--- previous response to continue listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListAssessmentTemplates__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. latNextToken :: Lens' ListAssessmentTemplates (Maybe Text) latNextToken = lens _latNextToken (\ s a -> s{_latNextToken = a}); --- | You can use this parameter to specify a subset of data to be included in--- the action\'s response.+-- | You can use this parameter to specify a subset of data to be included in the action\'s response. ----- For a record to match a filter, all specified filter attributes must--- match. When multiple values are specified for a filter attribute, any of--- the values can match.+-- For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match. latFilter :: Lens' ListAssessmentTemplates (Maybe AssessmentTemplateFilter) latFilter = lens _latFilter (\ s a -> s{_latFilter = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. latMaxResults :: Lens' ListAssessmentTemplates (Maybe Int) latMaxResults = lens _latMaxResults (\ s a -> s{_latMaxResults = a}); --- | A list of ARNs that specifies the assessment targets whose assessment--- templates you want to list.+-- | A list of ARNs that specifies the assessment targets whose assessment templates you want to list. latAssessmentTargetARNs :: Lens' ListAssessmentTemplates [Text] latAssessmentTargetARNs = lens _latAssessmentTargetARNs (\ s a -> s{_latAssessmentTargetARNs = a}) . _Default . _Coerce; @@ -170,10 +160,7 @@ , _latrsAssessmentTemplateARNs = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. latrsNextToken :: Lens' ListAssessmentTemplatesResponse (Maybe Text) latrsNextToken = lens _latrsNextToken (\ s a -> s{_latrsNextToken = a}); @@ -181,8 +168,7 @@ latrsResponseStatus :: Lens' ListAssessmentTemplatesResponse Int latrsResponseStatus = lens _latrsResponseStatus (\ s a -> s{_latrsResponseStatus = a}); --- | A list of ARNs that specifies the assessment templates returned by the--- action.+-- | A list of ARNs that specifies the assessment templates returned by the action. latrsAssessmentTemplateARNs :: Lens' ListAssessmentTemplatesResponse [Text] latrsAssessmentTemplateARNs = lens _latrsAssessmentTemplateARNs (\ s a -> s{_latrsAssessmentTemplateARNs = a}) . _Coerce;
gen/Network/AWS/Inspector/ListEventSubscriptions.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists all the event subscriptions for the assessment template that is--- specified by the ARN of the assessment template. For more information,--- see < SubscribeToEvent> and < UnsubscribeFromEvent>.+-- Lists all the event subscriptions for the assessment template that is specified by the ARN of the assessment template. For more information, see < SubscribeToEvent> and < UnsubscribeFromEvent>. module Network.AWS.Inspector.ListEventSubscriptions ( -- * Creating a Request@@ -72,21 +70,15 @@ , _lesMaxResults = Nothing } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the--- __ListEventSubscriptions__ action. Subsequent calls to the action fill--- __nextToken__ in the request with the value of __NextToken__ from the--- previous response to continue listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListEventSubscriptions__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. lesNextToken :: Lens' ListEventSubscriptions (Maybe Text) lesNextToken = lens _lesNextToken (\ s a -> s{_lesNextToken = a}); --- | The ARN of the assessment template for which you want to list the--- existing event subscriptions.+-- | The ARN of the assessment template for which you want to list the existing event subscriptions. lesResourceARN :: Lens' ListEventSubscriptions (Maybe Text) lesResourceARN = lens _lesResourceARN (\ s a -> s{_lesResourceARN = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. lesMaxResults :: Lens' ListEventSubscriptions (Maybe Int) lesMaxResults = lens _lesMaxResults (\ s a -> s{_lesMaxResults = a}); @@ -155,10 +147,7 @@ , _lesrsSubscriptions = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. lesrsNextToken :: Lens' ListEventSubscriptionsResponse (Maybe Text) lesrsNextToken = lens _lesrsNextToken (\ s a -> s{_lesrsNextToken = a});
gen/Network/AWS/Inspector/ListFindings.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Lists findings that are generated by the assessment runs that are--- specified by the ARNs of the assessment runs.+-- Lists findings that are generated by the assessment runs that are specified by the ARNs of the assessment runs. module Network.AWS.Inspector.ListFindings ( -- * Creating a Request@@ -76,30 +75,21 @@ , _lfMaxResults = Nothing } --- | The ARNs of the assessment runs that generate the findings that you want--- to list.+-- | The ARNs of the assessment runs that generate the findings that you want to list. lfAssessmentRunARNs :: Lens' ListFindings [Text] lfAssessmentRunARNs = lens _lfAssessmentRunARNs (\ s a -> s{_lfAssessmentRunARNs = a}) . _Default . _Coerce; --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the __ListFindings__--- action. Subsequent calls to the action fill __nextToken__ in the request--- with the value of __NextToken__ from the previous response to continue--- listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListFindings__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. lfNextToken :: Lens' ListFindings (Maybe Text) lfNextToken = lens _lfNextToken (\ s a -> s{_lfNextToken = a}); --- | You can use this parameter to specify a subset of data to be included in--- the action\'s response.+-- | You can use this parameter to specify a subset of data to be included in the action\'s response. ----- For a record to match a filter, all specified filter attributes must--- match. When multiple values are specified for a filter attribute, any of--- the values can match.+-- For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match. lfFilter :: Lens' ListFindings (Maybe FindingFilter) lfFilter = lens _lfFilter (\ s a -> s{_lfFilter = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. lfMaxResults :: Lens' ListFindings (Maybe Int) lfMaxResults = lens _lfMaxResults (\ s a -> s{_lfMaxResults = a}); @@ -167,10 +157,7 @@ , _lfrsFindingARNs = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. lfrsNextToken :: Lens' ListFindingsResponse (Maybe Text) lfrsNextToken = lens _lfrsNextToken (\ s a -> s{_lfrsNextToken = a});
gen/Network/AWS/Inspector/ListRulesPackages.hs view
@@ -65,16 +65,11 @@ , _lrpMaxResults = Nothing } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the __ListRulesPackages__--- action. Subsequent calls to the action fill __nextToken__ in the request--- with the value of __NextToken__ from the previous response to continue--- listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __ListRulesPackages__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. lrpNextToken :: Lens' ListRulesPackages (Maybe Text) lrpNextToken = lens _lrpNextToken (\ s a -> s{_lrpNextToken = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. lrpMaxResults :: Lens' ListRulesPackages (Maybe Int) lrpMaxResults = lens _lrpMaxResults (\ s a -> s{_lrpMaxResults = a}); @@ -140,10 +135,7 @@ , _lrprsRulesPackageARNs = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. lrprsNextToken :: Lens' ListRulesPackagesResponse (Maybe Text) lrprsNextToken = lens _lrprsNextToken (\ s a -> s{_lrprsNextToken = a}); @@ -151,8 +143,7 @@ lrprsResponseStatus :: Lens' ListRulesPackagesResponse Int lrprsResponseStatus = lens _lrprsResponseStatus (\ s a -> s{_lrprsResponseStatus = a}); --- | The list of ARNs that specifies the rules packages returned by the--- action.+-- | The list of ARNs that specifies the rules packages returned by the action. lrprsRulesPackageARNs :: Lens' ListRulesPackagesResponse [Text] lrprsRulesPackageARNs = lens _lrprsRulesPackageARNs (\ s a -> s{_lrprsRulesPackageARNs = a}) . _Coerce;
gen/Network/AWS/Inspector/ListTagsForResource.hs view
@@ -60,8 +60,7 @@ { _ltfrResourceARN = pResourceARN_ } --- | The ARN that specifies the assessment template whose tags you want to--- list.+-- | The ARN that specifies the assessment template whose tags you want to list. ltfrResourceARN :: Lens' ListTagsForResource Text ltfrResourceARN = lens _ltfrResourceARN (\ s a -> s{_ltfrResourceARN = a});
gen/Network/AWS/Inspector/PreviewAgents.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Previews the agents installed on the EC2 instances that are part of the--- specified assessment target.+-- Previews the agents installed on the EC2 instances that are part of the specified assessment target. module Network.AWS.Inspector.PreviewAgents ( -- * Creating a Request@@ -72,16 +71,11 @@ , _paPreviewAgentsARN = pPreviewAgentsARN_ } --- | You can use this parameter when paginating results. Set the value of--- this parameter to null on your first call to the __PreviewAgents__--- action. Subsequent calls to the action fill __nextToken__ in the request--- with the value of __NextToken__ from the previous response to continue--- listing data.+-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the __PreviewAgents__ action. Subsequent calls to the action fill __nextToken__ in the request with the value of __NextToken__ from the previous response to continue listing data. paNextToken :: Lens' PreviewAgents (Maybe Text) paNextToken = lens _paNextToken (\ s a -> s{_paNextToken = a}); --- | You can use this parameter to indicate the maximum number of items you--- want in the response. The default value is 10. The maximum value is 500.+-- | You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500. paMaxResults :: Lens' PreviewAgents (Maybe Int) paMaxResults = lens _paMaxResults (\ s a -> s{_paMaxResults = a}); @@ -152,10 +146,7 @@ , _parsAgentPreviews = mempty } --- | When a response is generated, if there is more data to be listed, this--- parameter is present in the response and contains the value to use for--- the __nextToken__ parameter in a subsequent pagination request. If there--- is no more data to be listed, this parameter is set to null.+-- | When a response is generated, if there is more data to be listed, this parameter is present in the response and contains the value to use for the __nextToken__ parameter in a subsequent pagination request. If there is no more data to be listed, this parameter is set to null. parsNextToken :: Lens' PreviewAgentsResponse (Maybe Text) parsNextToken = lens _parsNextToken (\ s a -> s{_parsNextToken = a});
gen/Network/AWS/Inspector/RegisterCrossAccountAccessRole.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Registers the IAM role that Amazon Inspector uses to list your EC2--- instances at the start of the assessment run or when you call the--- < PreviewAgents> action.+-- Registers the IAM role that Amazon Inspector uses to list your EC2 instances at the start of the assessment run or when you call the < PreviewAgents> action. module Network.AWS.Inspector.RegisterCrossAccountAccessRole ( -- * Creating a Request@@ -59,9 +57,7 @@ { _rcaarRoleARN = pRoleARN_ } --- | The ARN of the IAM role that Amazon Inspector uses to list your EC2--- instances during the assessment run or when you call the--- < PreviewAgents> action.+-- | The ARN of the IAM role that Amazon Inspector uses to list your EC2 instances during the assessment run or when you call the < PreviewAgents> action. rcaarRoleARN :: Lens' RegisterCrossAccountAccessRole Text rcaarRoleARN = lens _rcaarRoleARN (\ s a -> s{_rcaarRoleARN = a});
gen/Network/AWS/Inspector/RemoveAttributesFromFindings.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Removes entire attributes (key and value pairs) from the findings that--- are specified by the ARNs of the findings where an attribute with the--- specified key exists.+-- Removes entire attributes (key and value pairs) from the findings that are specified by the ARNs of the findings where an attribute with the specified key exists. module Network.AWS.Inspector.RemoveAttributesFromFindings ( -- * Creating a Request@@ -67,13 +65,11 @@ , _raffAttributeKeys = mempty } --- | The ARNs that specify the findings that you want to remove attributes--- from.+-- | The ARNs that specify the findings that you want to remove attributes from. raffFindingARNs :: Lens' RemoveAttributesFromFindings (NonEmpty Text) raffFindingARNs = lens _raffFindingARNs (\ s a -> s{_raffFindingARNs = a}) . _List1; --- | The array of attribute keys that you want to remove from specified--- findings.+-- | The array of attribute keys that you want to remove from specified findings. raffAttributeKeys :: Lens' RemoveAttributesFromFindings [Text] raffAttributeKeys = lens _raffAttributeKeys (\ s a -> s{_raffAttributeKeys = a}) . _Coerce; @@ -142,8 +138,7 @@ raffrsResponseStatus :: Lens' RemoveAttributesFromFindingsResponse Int raffrsResponseStatus = lens _raffrsResponseStatus (\ s a -> s{_raffrsResponseStatus = a}); --- | Attributes details that cannot be described. An error code is provided--- for each failed item.+-- | Attributes details that cannot be described. An error code is provided for each failed item. raffrsFailedItems :: Lens' RemoveAttributesFromFindingsResponse (HashMap Text FailedItemDetails) raffrsFailedItems = lens _raffrsFailedItems (\ s a -> s{_raffrsFailedItems = a}) . _Map;
gen/Network/AWS/Inspector/SetTagsForResource.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Sets tags (key and value pairs) to the assessment template that is--- specified by the ARN of the assessment template.+-- Sets tags (key and value pairs) to the assessment template that is specified by the ARN of the assessment template. module Network.AWS.Inspector.SetTagsForResource ( -- * Creating a Request@@ -63,8 +62,7 @@ , _stfrResourceARN = pResourceARN_ } --- | A collection of key and value pairs that you want to set to the--- assessment template.+-- | A collection of key and value pairs that you want to set to the assessment template. stfrTags :: Lens' SetTagsForResource [Tag] stfrTags = lens _stfrTags (\ s a -> s{_stfrTags = a}) . _Default . _Coerce;
gen/Network/AWS/Inspector/StartAssessmentRun.hs view
@@ -18,9 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Starts the assessment run specified by the ARN of the assessment--- template. For this API to function properly, you must not exceed the--- limit of running up to 500 concurrent agents per AWS account.+-- Starts the assessment run specified by the ARN of the assessment template. For this API to function properly, you must not exceed the limit of running up to 500 concurrent agents per AWS account. module Network.AWS.Inspector.StartAssessmentRun ( -- * Creating a Request@@ -67,14 +65,11 @@ , _sarAssessmentTemplateARN = pAssessmentTemplateARN_ } --- | You can specify the name for the assessment run, or you can use the--- auto-generated name that is based on the assessment template name. The--- name must be unique for the assessment template.+-- | You can specify the name for the assessment run, or you can use the auto-generated name that is based on the assessment template name. The name must be unique for the assessment template. sarAssessmentRunName :: Lens' StartAssessmentRun (Maybe Text) sarAssessmentRunName = lens _sarAssessmentRunName (\ s a -> s{_sarAssessmentRunName = a}); --- | The ARN of the assessment template of the assessment run that you want--- to start.+-- | The ARN of the assessment template of the assessment run that you want to start. sarAssessmentTemplateARN :: Lens' StartAssessmentRun Text sarAssessmentTemplateARN = lens _sarAssessmentTemplateARN (\ s a -> s{_sarAssessmentTemplateARN = a});
gen/Network/AWS/Inspector/StopAssessmentRun.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Stops the assessment run that is specified by the ARN of the assessment--- run.+-- Stops the assessment run that is specified by the ARN of the assessment run. module Network.AWS.Inspector.StopAssessmentRun ( -- * Creating a Request
gen/Network/AWS/Inspector/SubscribeToEvent.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Enables the process of sending Amazon Simple Notification Service (SNS)--- notifications about a specified event to a specified SNS topic.+-- Enables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic. module Network.AWS.Inspector.SubscribeToEvent ( -- * Creating a Request@@ -70,8 +69,7 @@ , _steTopicARN = pTopicARN_ } --- | The ARN of the assessment template that is used during the event for--- which you want to receive SNS notifications.+-- | The ARN of the assessment template that is used during the event for which you want to receive SNS notifications. steResourceARN :: Lens' SubscribeToEvent Text steResourceARN = lens _steResourceARN (\ s a -> s{_steResourceARN = a});
gen/Network/AWS/Inspector/Types.hs view
@@ -320,31 +320,26 @@ _AccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError _AccessDeniedException = _ServiceError . hasCode "AccessDeniedException" --- | You cannot perform a specified action if an assessment run is currently--- in progress.+-- | You cannot perform a specified action if an assessment run is currently in progress. _AssessmentRunInProgressException :: AsError a => Getting (First ServiceError) a ServiceError _AssessmentRunInProgressException = _ServiceError . hasCode "AssessmentRunInProgressException" --- | The request was rejected because it referenced an entity that does not--- exist. The error code describes the entity.+-- | The request was rejected because it referenced an entity that does not exist. The error code describes the entity. _NoSuchEntityException :: AsError a => Getting (First ServiceError) a ServiceError _NoSuchEntityException = _ServiceError . hasCode "NoSuchEntityException" --- | You started an assessment run, but one of the instances is already--- participating in another assessment run.+-- | You started an assessment run, but one of the instances is already participating in another assessment run. _AgentsAlreadyRunningAssessmentException :: AsError a => Getting (First ServiceError) a ServiceError _AgentsAlreadyRunningAssessmentException = _ServiceError . hasCode "AgentsAlreadyRunningAssessmentException" --- | Amazon Inspector cannot assume the cross-account role that it needs to--- list your EC2 instances during the assessment run.+-- | Amazon Inspector cannot assume the cross-account role that it needs to list your EC2 instances during the assessment run. _InvalidCrossAccountRoleException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidCrossAccountRoleException = _ServiceError . hasCode "InvalidCrossAccountRoleException" --- | The request was rejected because an invalid or out-of-range value was--- supplied for an input parameter.+-- | The request was rejected because an invalid or out-of-range value was supplied for an input parameter. _InvalidInputException :: AsError a => Getting (First ServiceError) a ServiceError _InvalidInputException = _ServiceError . hasCode "InvalidInputException" @@ -352,8 +347,6 @@ _InternalException :: AsError a => Getting (First ServiceError) a ServiceError _InternalException = _ServiceError . hasCode "InternalException" --- | The request was rejected because it attempted to create resources beyond--- the current AWS account limits. The error code describes the limit--- exceeded.+-- | The request was rejected because it attempted to create resources beyond the current AWS account limits. The error code describes the limit exceeded. _LimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError _LimitExceededException = _ServiceError . hasCode "LimitExceededException"
gen/Network/AWS/Inspector/Types/Product.hs view
@@ -21,8 +21,7 @@ import Network.AWS.Lens import Network.AWS.Prelude --- | Contains information about an Amazon Inspector agent. This data type is--- used as a request parameter in the < ListAssessmentRunAgents> action.+-- | Contains information about an Amazon Inspector agent. This data type is used as a request parameter in the < ListAssessmentRunAgents> action. -- -- /See:/ 'agentFilter' smart constructor. data AgentFilter = AgentFilter'@@ -45,14 +44,11 @@ , _afAgentHealthCodes = mempty } --- | The current health state of the agent. Values can be set to __HEALTHY__--- or __UNHEALTHY__.+-- | The current health state of the agent. Values can be set to __HEALTHY__ or __UNHEALTHY__. afAgentHealths :: Lens' AgentFilter [AgentHealth] afAgentHealths = lens _afAgentHealths (\ s a -> s{_afAgentHealths = a}) . _Coerce; --- | The detailed health state of the agent. Values can be set to __IDLE__,--- __RUNNING__, __SHUTDOWN__, __UNHEALTHY__, __THROTTLED__, and--- __UNKNOWN__.+-- | The detailed health state of the agent. Values can be set to __IDLE__, __RUNNING__, __SHUTDOWN__, __UNHEALTHY__, __THROTTLED__, and __UNKNOWN__. afAgentHealthCodes :: Lens' AgentFilter [AgentHealthCode] afAgentHealthCodes = lens _afAgentHealthCodes (\ s a -> s{_afAgentHealthCodes = a}) . _Coerce; @@ -91,8 +87,7 @@ , _apAgentId = pAgentId_ } --- | The Auto Scaling group for the EC2 instance where the agent is--- installed.+-- | The Auto Scaling group for the EC2 instance where the agent is installed. apAutoScalingGroup :: Lens' AgentPreview (Maybe Text) apAutoScalingGroup = lens _apAutoScalingGroup (\ s a -> s{_apAutoScalingGroup = a}); @@ -111,8 +106,7 @@ instance NFData AgentPreview --- | A snapshot of an Amazon Inspector assessment run that contains the--- findings of the assessment run .+-- | A snapshot of an Amazon Inspector assessment run that contains the findings of the assessment run . -- -- Used as the response element in the < DescribeAssessmentRuns> action. --@@ -198,8 +192,7 @@ arStartedAt :: Lens' AssessmentRun (Maybe UTCTime) arStartedAt = lens _arStartedAt (\ s a -> s{_arStartedAt = a}) . mapping _Time; --- | The assessment run completion time that corresponds to the rules--- packages evaluation completion time or failure.+-- | The assessment run completion time that corresponds to the rules packages evaluation completion time or failure. arCompletedAt :: Lens' AssessmentRun (Maybe UTCTime) arCompletedAt = lens _arCompletedAt (\ s a -> s{_arCompletedAt = a}) . mapping _Time; @@ -211,8 +204,7 @@ arName :: Lens' AssessmentRun Text arName = lens _arName (\ s a -> s{_arName = a}); --- | The ARN of the assessment template that is associated with the--- assessment run.+-- | The ARN of the assessment template that is associated with the assessment run. arAssessmentTemplateARN :: Lens' AssessmentRun Text arAssessmentTemplateARN = lens _arAssessmentTemplateARN (\ s a -> s{_arAssessmentTemplateARN = a}); @@ -228,8 +220,7 @@ arRulesPackageARNs :: Lens' AssessmentRun (NonEmpty Text) arRulesPackageARNs = lens _arRulesPackageARNs (\ s a -> s{_arRulesPackageARNs = a}) . _List1; --- | The user-defined attributes that are assigned to every generated--- finding.+-- | The user-defined attributes that are assigned to every generated finding. arUserAttributesForFindings :: Lens' AssessmentRun [Attribute] arUserAttributesForFindings = lens _arUserAttributesForFindings (\ s a -> s{_arUserAttributesForFindings = a}) . _Coerce; @@ -241,8 +232,7 @@ arStateChangedAt :: Lens' AssessmentRun UTCTime arStateChangedAt = lens _arStateChangedAt (\ s a -> s{_arStateChangedAt = a}) . _Time; --- | A Boolean value (true or false) that specifies whether the process of--- collecting data from the agents is completed.+-- | A Boolean value (true or false) that specifies whether the process of collecting data from the agents is completed. arDataCollected :: Lens' AssessmentRun Bool arDataCollected = lens _arDataCollected (\ s a -> s{_arDataCollected = a}); @@ -250,8 +240,7 @@ arStateChanges :: Lens' AssessmentRun [AssessmentRunStateChange] arStateChanges = lens _arStateChanges (\ s a -> s{_arStateChanges = a}) . _Coerce; --- | A list of notifications for the event subscriptions. A notification--- about a particular generated finding is added to this list only once.+-- | A list of notifications for the event subscriptions. A notification about a particular generated finding is added to this list only once. arNotifications :: Lens' AssessmentRun [AssessmentRunNotification] arNotifications = lens _arNotifications (\ s a -> s{_arNotifications = a}) . _Coerce; @@ -278,8 +267,7 @@ instance NFData AssessmentRun --- | Contains information about an Amazon Inspector agent. This data type is--- used as a response element in the < ListAssessmentRunAgents> action.+-- | Contains information about an Amazon Inspector agent. This data type is used as a response element in the < ListAssessmentRunAgents> action. -- -- /See:/ 'assessmentRunAgent' smart constructor. data AssessmentRunAgent = AssessmentRunAgent'@@ -326,8 +314,7 @@ , _araTelemetryMetadata = mempty } --- | The Auto Scaling group of the EC2 instance that is specified by the--- agent ID.+-- | The Auto Scaling group of the EC2 instance that is specified by the agent ID. araAutoScalingGroup :: Lens' AssessmentRunAgent (Maybe Text) araAutoScalingGroup = lens _araAutoScalingGroup (\ s a -> s{_araAutoScalingGroup = a}); @@ -351,8 +338,7 @@ araAgentHealthCode :: Lens' AssessmentRunAgent AgentHealthCode araAgentHealthCode = lens _araAgentHealthCode (\ s a -> s{_araAgentHealthCode = a}); --- | The Amazon Inspector application data metrics that are collected by the--- agent.+-- | The Amazon Inspector application data metrics that are collected by the agent. araTelemetryMetadata :: Lens' AssessmentRunAgent [TelemetryMetadata] araTelemetryMetadata = lens _araTelemetryMetadata (\ s a -> s{_araTelemetryMetadata = a}) . _Coerce; @@ -416,49 +402,31 @@ , _arfDurationRange = Nothing } --- | For a record to match a filter, one of the values specified for this--- data type property must be the exact match of the value of the--- __assessmentRunState__ property of the < AssessmentRun> data type.+-- | For a record to match a filter, one of the values specified for this data type property must be the exact match of the value of the __assessmentRunState__ property of the < AssessmentRun> data type. arfStates :: Lens' AssessmentRunFilter [AssessmentRunState] arfStates = lens _arfStates (\ s a -> s{_arfStates = a}) . _Default . _Coerce; --- | For a record to match a filter, an explicit value or a string containing--- a wildcard that is specified for this data type property must match the--- value of the __assessmentRunName__ property of the < AssessmentRun> data--- type.+-- | For a record to match a filter, an explicit value or a string containing a wildcard that is specified for this data type property must match the value of the __assessmentRunName__ property of the < AssessmentRun> data type. arfNamePattern :: Lens' AssessmentRunFilter (Maybe Text) arfNamePattern = lens _arfNamePattern (\ s a -> s{_arfNamePattern = a}); --- | For a record to match a filter, the value that is specified for this--- data type property must inclusively match any value between the--- specified minimum and maximum values of the __startTime__ property of--- the < AssessmentRun> data type.+-- | For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the __startTime__ property of the < AssessmentRun> data type. arfStartTimeRange :: Lens' AssessmentRunFilter (Maybe TimestampRange) arfStartTimeRange = lens _arfStartTimeRange (\ s a -> s{_arfStartTimeRange = a}); --- | For a record to match a filter, the value that is specified for this--- data type property must match the __stateChangedAt__ property of the--- < AssessmentRun> data type.+-- | For a record to match a filter, the value that is specified for this data type property must match the __stateChangedAt__ property of the < AssessmentRun> data type. arfStateChangeTimeRange :: Lens' AssessmentRunFilter (Maybe TimestampRange) arfStateChangeTimeRange = lens _arfStateChangeTimeRange (\ s a -> s{_arfStateChangeTimeRange = a}); --- | For a record to match a filter, the value that is specified for this--- data type property must be contained in the list of values of the--- __rulesPackages__ property of the < AssessmentRun> data type.+-- | For a record to match a filter, the value that is specified for this data type property must be contained in the list of values of the __rulesPackages__ property of the < AssessmentRun> data type. arfRulesPackageARNs :: Lens' AssessmentRunFilter [Text] arfRulesPackageARNs = lens _arfRulesPackageARNs (\ s a -> s{_arfRulesPackageARNs = a}) . _Default . _Coerce; --- | For a record to match a filter, the value that is specified for this--- data type property must inclusively match any value between the--- specified minimum and maximum values of the __completedAt__ property of--- the < AssessmentRun> data type.+-- | For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the __completedAt__ property of the < AssessmentRun> data type. arfCompletionTimeRange :: Lens' AssessmentRunFilter (Maybe TimestampRange) arfCompletionTimeRange = lens _arfCompletionTimeRange (\ s a -> s{_arfCompletionTimeRange = a}); --- | For a record to match a filter, the value that is specified for this--- data type property must inclusively match any value between the--- specified minimum and maximum values of the __durationInSeconds__--- property of the < AssessmentRun> data type.+-- | For a record to match a filter, the value that is specified for this data type property must inclusively match any value between the specified minimum and maximum values of the __durationInSeconds__ property of the < AssessmentRun> data type. arfDurationRange :: Lens' AssessmentRunFilter (Maybe DurationRange) arfDurationRange = lens _arfDurationRange (\ s a -> s{_arfDurationRange = a}); @@ -542,8 +510,7 @@ arnEvent :: Lens' AssessmentRunNotification InspectorEvent arnEvent = lens _arnEvent (\ s a -> s{_arnEvent = a}); --- | The Boolean value that specifies whether the notification represents an--- error.+-- | The Boolean value that specifies whether the notification represents an error. arnError :: Lens' AssessmentRunNotification Bool arnError = lens _arnError (\ s a -> s{_arnError = a}); @@ -607,9 +574,7 @@ instance NFData AssessmentRunStateChange --- | Contains information about an Amazon Inspector application. This data--- type is used as the response element in the < DescribeAssessmentTargets>--- action.+-- | Contains information about an Amazon Inspector application. This data type is used as the response element in the < DescribeAssessmentTargets> action. -- -- /See:/ 'assessmentTarget' smart constructor. data AssessmentTarget = AssessmentTarget'@@ -657,8 +622,7 @@ aName :: Lens' AssessmentTarget Text aName = lens _aName (\ s a -> s{_aName = a}); --- | The ARN that specifies the resource group that is associated with the--- assessment target.+-- | The ARN that specifies the resource group that is associated with the assessment target. aResourceGroupARN :: Lens' AssessmentTarget Text aResourceGroupARN = lens _aResourceGroupARN (\ s a -> s{_aResourceGroupARN = a}); @@ -703,10 +667,7 @@ { _atfAssessmentTargetNamePattern = Nothing } --- | For a record to match a filter, an explicit value or a string that--- contains a wildcard that is specified for this data type property must--- match the value of the __assessmentTargetName__ property of the--- < AssessmentTarget> data type.+-- | For a record to match a filter, an explicit value or a string that contains a wildcard that is specified for this data type property must match the value of the __assessmentTargetName__ property of the < AssessmentTarget> data type. atfAssessmentTargetNamePattern :: Lens' AssessmentTargetFilter (Maybe Text) atfAssessmentTargetNamePattern = lens _atfAssessmentTargetNamePattern (\ s a -> s{_atfAssessmentTargetNamePattern = a}); @@ -721,9 +682,7 @@ [("assessmentTargetNamePattern" .=) <$> _atfAssessmentTargetNamePattern]) --- | Contains information about an Amazon Inspector assessment template. This--- data type is used as the response element in the--- < DescribeAssessmentTemplates> action.+-- | Contains information about an Amazon Inspector assessment template. This data type is used as the response element in the < DescribeAssessmentTemplates> action. -- -- /See:/ 'assessmentTemplate' smart constructor. data AssessmentTemplate = AssessmentTemplate'@@ -779,14 +738,11 @@ atName :: Lens' AssessmentTemplate Text atName = lens _atName (\ s a -> s{_atName = a}); --- | The ARN of the assessment target that corresponds to this assessment--- template.+-- | The ARN of the assessment target that corresponds to this assessment template. atAssessmentTargetARN :: Lens' AssessmentTemplate Text atAssessmentTargetARN = lens _atAssessmentTargetARN (\ s a -> s{_atAssessmentTargetARN = a}); --- | The duration in seconds specified for this assessment tempate. The--- default value is 3600 seconds (one hour). The maximum value is 86400--- seconds (one day).+-- | The duration in seconds specified for this assessment tempate. The default value is 3600 seconds (one hour). The maximum value is 86400 seconds (one day). atDurationInSeconds :: Lens' AssessmentTemplate Natural atDurationInSeconds = lens _atDurationInSeconds (\ s a -> s{_atDurationInSeconds = a}) . _Nat; @@ -794,8 +750,7 @@ atRulesPackageARNs :: Lens' AssessmentTemplate [Text] atRulesPackageARNs = lens _atRulesPackageARNs (\ s a -> s{_atRulesPackageARNs = a}) . _Coerce; --- | The user-defined attributes that are assigned to every generated finding--- from the assessment run that uses this assessment template.+-- | The user-defined attributes that are assigned to every generated finding from the assessment run that uses this assessment template. atUserAttributesForFindings :: Lens' AssessmentTemplate [Attribute] atUserAttributesForFindings = lens _atUserAttributesForFindings (\ s a -> s{_atUserAttributesForFindings = a}) . _Coerce; @@ -846,23 +801,15 @@ , _atfDurationRange = Nothing } --- | For a record to match a filter, an explicit value or a string that--- contains a wildcard that is specified for this data type property must--- match the value of the __assessmentTemplateName__ property of the--- < AssessmentTemplate> data type.+-- | For a record to match a filter, an explicit value or a string that contains a wildcard that is specified for this data type property must match the value of the __assessmentTemplateName__ property of the < AssessmentTemplate> data type. atfNamePattern :: Lens' AssessmentTemplateFilter (Maybe Text) atfNamePattern = lens _atfNamePattern (\ s a -> s{_atfNamePattern = a}); --- | For a record to match a filter, the values that are specified for this--- data type property must be contained in the list of values of the--- __rulesPackageArns__ property of the < AssessmentTemplate> data type.+-- | For a record to match a filter, the values that are specified for this data type property must be contained in the list of values of the __rulesPackageArns__ property of the < AssessmentTemplate> data type. atfRulesPackageARNs :: Lens' AssessmentTemplateFilter [Text] atfRulesPackageARNs = lens _atfRulesPackageARNs (\ s a -> s{_atfRulesPackageARNs = a}) . _Default . _Coerce; --- | For a record to match a filter, the value specified for this data type--- property must inclusively match any value between the specified minimum--- and maximum values of the __durationInSeconds__ property of the--- < AssessmentTemplate> data type.+-- | For a record to match a filter, the value specified for this data type property must inclusively match any value between the specified minimum and maximum values of the __durationInSeconds__ property of the < AssessmentTemplate> data type. atfDurationRange :: Lens' AssessmentTemplateFilter (Maybe DurationRange) atfDurationRange = lens _atfDurationRange (\ s a -> s{_atfDurationRange = a}); @@ -878,8 +825,7 @@ ("rulesPackageArns" .=) <$> _atfRulesPackageARNs, ("durationRange" .=) <$> _atfDurationRange]) --- | A collection of attributes of the host from which the finding is--- generated.+-- | A collection of attributes of the host from which the finding is generated. -- -- /See:/ 'assetAttributes' smart constructor. data AssetAttributes = AssetAttributes'@@ -923,23 +869,19 @@ aaHostname :: Lens' AssetAttributes (Maybe Text) aaHostname = lens _aaHostname (\ s a -> s{_aaHostname = a}); --- | The Auto Scaling group of the EC2 instance where the finding is--- generated.+-- | The Auto Scaling group of the EC2 instance where the finding is generated. aaAutoScalingGroup :: Lens' AssetAttributes (Maybe Text) aaAutoScalingGroup = lens _aaAutoScalingGroup (\ s a -> s{_aaAutoScalingGroup = a}); --- | The list of IP v4 addresses of the EC2 instance where the finding is--- generated.+-- | The list of IP v4 addresses of the EC2 instance where the finding is generated. aaIpv4Addresses :: Lens' AssetAttributes [Text] aaIpv4Addresses = lens _aaIpv4Addresses (\ s a -> s{_aaIpv4Addresses = a}) . _Default . _Coerce; --- | The ID of the agent that is installed on the EC2 instance where the--- finding is generated.+-- | The ID of the agent that is installed on the EC2 instance where the finding is generated. aaAgentId :: Lens' AssetAttributes (Maybe Text) aaAgentId = lens _aaAgentId (\ s a -> s{_aaAgentId = a}); --- | The ID of the Amazon Machine Image (AMI) that is installed on the EC2--- instance where the finding is generated.+-- | The ID of the Amazon Machine Image (AMI) that is installed on the EC2 instance where the finding is generated. aaAmiId :: Lens' AssetAttributes (Maybe Text) aaAmiId = lens _aaAmiId (\ s a -> s{_aaAmiId = a}); @@ -962,8 +904,7 @@ instance NFData AssetAttributes --- | This data type is used as a request parameter in the--- < AddAttributesToFindings> and < CreateAssessmentTemplate> actions.+-- | This data type is used as a request parameter in the < AddAttributesToFindings> and < CreateAssessmentTemplate> actions. -- -- /See:/ 'attribute' smart constructor. data Attribute = Attribute'@@ -1038,8 +979,7 @@ drMinSeconds :: Lens' DurationRange (Maybe Natural) drMinSeconds = lens _drMinSeconds (\ s a -> s{_drMinSeconds = a}) . mapping _Nat; --- | The maximum value of the duration range. Must be less than or equal to--- 604800 seconds (1 week).+-- | The maximum value of the duration range. Must be less than or equal to 604800 seconds (1 week). drMaxSeconds :: Lens' DurationRange (Maybe Natural) drMaxSeconds = lens _drMaxSeconds (\ s a -> s{_drMaxSeconds = a}) . mapping _Nat; @@ -1079,8 +1019,7 @@ , _esSubscribedAt = _Time # pSubscribedAt_ } --- | The event for which Amazon Simple Notification Service (SNS)--- notifications are sent.+-- | The event for which Amazon Simple Notification Service (SNS) notifications are sent. esEvent :: Lens' EventSubscription InspectorEvent esEvent = lens _esEvent (\ s a -> s{_esEvent = a}); @@ -1128,8 +1067,7 @@ fidFailureCode :: Lens' FailedItemDetails FailedItemErrorCode fidFailureCode = lens _fidFailureCode (\ s a -> s{_fidFailureCode = a}); --- | Indicates whether you can immediately retry a request for this item for--- a specified resource.+-- | Indicates whether you can immediately retry a request for this item for a specified resource. fidRetryable :: Lens' FailedItemDetails Bool fidRetryable = lens _fidRetryable (\ s a -> s{_fidRetryable = a}); @@ -1144,8 +1082,7 @@ instance NFData FailedItemDetails --- | Contains information about an Amazon Inspector finding. This data type--- is used as the response element in the < DescribeFindings> action.+-- | Contains information about an Amazon Inspector finding. This data type is used as the response element in the < DescribeFindings> action. -- -- /See:/ 'finding' smart constructor. data Finding = Finding'@@ -1239,8 +1176,7 @@ fService :: Lens' Finding (Maybe Text) fService = lens _fService (\ s a -> s{_fService = a}); --- | The finding severity. Values can be set to High, Medium, Low, and--- Informational.+-- | The finding severity. Values can be set to High, Medium, Low, and Informational. fSeverity :: Lens' Finding (Maybe Severity) fSeverity = lens _fSeverity (\ s a -> s{_fSeverity = a}); @@ -1252,8 +1188,7 @@ fConfidence :: Lens' Finding (Maybe Natural) fConfidence = lens _fConfidence (\ s a -> s{_fConfidence = a}) . mapping _Nat; --- | A collection of attributes of the host from which the finding is--- generated.+-- | A collection of attributes of the host from which the finding is generated. fAssetAttributes :: Lens' Finding (Maybe AssetAttributes) fAssetAttributes = lens _fAssetAttributes (\ s a -> s{_fAssetAttributes = a}); @@ -1336,8 +1271,7 @@ instance NFData Finding --- | This data type is used as a request parameter in the < ListFindings>--- action.+-- | This data type is used as a request parameter in the < ListFindings> action. -- -- /See:/ 'findingFilter' smart constructor. data FindingFilter = FindingFilter'@@ -1384,39 +1318,27 @@ , _ffAutoScalingGroups = Nothing } --- | For a record to match a filter, one of the values that is specified for--- this data type property must be the exact match of the value of the--- __agentId__ property of the < Finding> data type.+-- | For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the __agentId__ property of the < Finding> data type. ffAgentIds :: Lens' FindingFilter [Text] ffAgentIds = lens _ffAgentIds (\ s a -> s{_ffAgentIds = a}) . _Default . _Coerce; --- | For a record to match a filter, one of the values that is specified for--- this data type property must be the exact match of the value of the--- __ruleName__ property of the < Finding> data type.+-- | For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the __ruleName__ property of the < Finding> data type. ffRuleNames :: Lens' FindingFilter [Text] ffRuleNames = lens _ffRuleNames (\ s a -> s{_ffRuleNames = a}) . _Default . _Coerce; --- | For a record to match a filter, the value that is specified for this--- data type property must be contained in the list of values of the--- __userAttributes__ property of the < Finding> data type.+-- | For a record to match a filter, the value that is specified for this data type property must be contained in the list of values of the __userAttributes__ property of the < Finding> data type. ffUserAttributes :: Lens' FindingFilter [Attribute] ffUserAttributes = lens _ffUserAttributes (\ s a -> s{_ffUserAttributes = a}) . _Default . _Coerce; --- | For a record to match a filter, one of the values that is specified for--- this data type property must be the exact match of the value of the--- __rulesPackageArn__ property of the < Finding> data type.+-- | For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the __rulesPackageArn__ property of the < Finding> data type. ffRulesPackageARNs :: Lens' FindingFilter [Text] ffRulesPackageARNs = lens _ffRulesPackageARNs (\ s a -> s{_ffRulesPackageARNs = a}) . _Default . _Coerce; --- | For a record to match a filter, the list of values that are specified--- for this data type property must be contained in the list of values of--- the __attributes__ property of the < Finding> data type.+-- | For a record to match a filter, the list of values that are specified for this data type property must be contained in the list of values of the __attributes__ property of the < Finding> data type. ffAttributes :: Lens' FindingFilter [Attribute] ffAttributes = lens _ffAttributes (\ s a -> s{_ffAttributes = a}) . _Default . _Coerce; --- | For a record to match a filter, one of the values that is specified for--- this data type property must be the exact match of the value of the--- __severity__ property of the < Finding> data type.+-- | For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the __severity__ property of the < Finding> data type. ffSeverities :: Lens' FindingFilter [Severity] ffSeverities = lens _ffSeverities (\ s a -> s{_ffSeverities = a}) . _Default . _Coerce; @@ -1424,9 +1346,7 @@ ffCreationTimeRange :: Lens' FindingFilter (Maybe TimestampRange) ffCreationTimeRange = lens _ffCreationTimeRange (\ s a -> s{_ffCreationTimeRange = a}); --- | For a record to match a filter, one of the values that is specified for--- this data type property must be the exact match of the value of the--- __autoScalingGroup__ property of the < Finding> data type.+-- | For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the __autoScalingGroup__ property of the < Finding> data type. ffAutoScalingGroups :: Lens' FindingFilter [Text] ffAutoScalingGroups = lens _ffAutoScalingGroups (\ s a -> s{_ffAutoScalingGroups = a}) . _Default . _Coerce; @@ -1500,10 +1420,7 @@ instance NFData InspectorServiceAttributes --- | Contains information about a resource group. The resource group defines--- a set of tags that, when queried, identify the AWS resources that make--- up the assessment target. This data type is used as the response element--- in the < DescribeResourceGroups> action.+-- | Contains information about a resource group. The resource group defines a set of tags that, when queried, identify the AWS resources that make up the assessment target. This data type is used as the response element in the < DescribeResourceGroups> action. -- -- /See:/ 'resourceGroup' smart constructor. data ResourceGroup = ResourceGroup'@@ -1537,8 +1454,7 @@ rgArn :: Lens' ResourceGroup Text rgArn = lens _rgArn (\ s a -> s{_rgArn = a}); --- | The tags (key and value pairs) of the resource group. This data type--- property is used in the < CreateResourceGroup> action.+-- | The tags (key and value pairs) of the resource group. This data type property is used in the < CreateResourceGroup> action. rgTags :: Lens' ResourceGroup (NonEmpty ResourceGroupTag) rgTags = lens _rgTags (\ s a -> s{_rgTags = a}) . _List1; @@ -1558,8 +1474,7 @@ instance NFData ResourceGroup --- | This data type is used as one of the elements of the < ResourceGroup>--- data type.+-- | This data type is used as one of the elements of the < ResourceGroup> data type. -- -- /See:/ 'resourceGroupTag' smart constructor. data ResourceGroupTag = ResourceGroupTag'@@ -1609,9 +1524,7 @@ [("value" .=) <$> _rgtValue, Just ("key" .= _rgtKey)]) --- | Contains information about an Amazon Inspector rules package. This data--- type is used as the response element in the < DescribeRulesPackages>--- action.+-- | Contains information about an Amazon Inspector rules package. This data type is used as the response element in the < DescribeRulesPackages> action. -- -- /See:/ 'rulesPackage' smart constructor. data RulesPackage = RulesPackage'@@ -1684,8 +1597,7 @@ instance NFData RulesPackage --- | This data type is used as a response element in the--- < ListEventSubscriptions> action.+-- | This data type is used as a response element in the < ListEventSubscriptions> action. -- -- /See:/ 'subscription' smart constructor. data Subscription = Subscription'@@ -1715,13 +1627,11 @@ , _sEventSubscriptions = _List1 # pEventSubscriptions_ } --- | The ARN of the assessment template that is used during the event for--- which the SNS notification is sent.+-- | The ARN of the assessment template that is used during the event for which the SNS notification is sent. sResourceARN :: Lens' Subscription Text sResourceARN = lens _sResourceARN (\ s a -> s{_sResourceARN = a}); --- | The ARN of the Amazon Simple Notification Service (SNS) topic to which--- the SNS notifications are sent.+-- | The ARN of the Amazon Simple Notification Service (SNS) topic to which the SNS notifications are sent. sTopicARN :: Lens' Subscription Text sTopicARN = lens _sTopicARN (\ s a -> s{_sTopicARN = a}); @@ -1741,9 +1651,7 @@ instance NFData Subscription --- | A key and value pair. This data type is used as a request parameter in--- the < SetTagsForResource> action and a response element in the--- < ListTagsForResource> action.+-- | A key and value pair. This data type is used as a request parameter in the < SetTagsForResource> action and a response element in the < ListTagsForResource> action. -- -- /See:/ 'tag' smart constructor. data Tag = Tag'@@ -1791,9 +1699,7 @@ [("value" .=) <$> _tagValue, Just ("key" .= _tagKey)]) --- | The metadata about the Amazon Inspector application data metrics--- collected by the agent. This data type is used as the response element--- in the < GetTelemetryMetadata> action.+-- | The metadata about the Amazon Inspector application data metrics collected by the agent. This data type is used as the response element in the < GetTelemetryMetadata> action. -- -- /See:/ 'telemetryMetadata' smart constructor. data TelemetryMetadata = TelemetryMetadata'@@ -1822,8 +1728,7 @@ , _tmCount = pCount_ } --- | The data size of messages that the agent sends to the Amazon Inspector--- service.+-- | The data size of messages that the agent sends to the Amazon Inspector service. tmDataSize :: Lens' TelemetryMetadata (Maybe Integer) tmDataSize = lens _tmDataSize (\ s a -> s{_tmDataSize = a}); @@ -1831,8 +1736,7 @@ tmMessageType :: Lens' TelemetryMetadata Text tmMessageType = lens _tmMessageType (\ s a -> s{_tmMessageType = a}); --- | The count of messages that the agent sends to the Amazon Inspector--- service.+-- | The count of messages that the agent sends to the Amazon Inspector service. tmCount :: Lens' TelemetryMetadata Integer tmCount = lens _tmCount (\ s a -> s{_tmCount = a});
gen/Network/AWS/Inspector/UnsubscribeFromEvent.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Disables the process of sending Amazon Simple Notification Service (SNS)--- notifications about a specified event to a specified SNS topic.+-- Disables the process of sending Amazon Simple Notification Service (SNS) notifications about a specified event to a specified SNS topic. module Network.AWS.Inspector.UnsubscribeFromEvent ( -- * Creating a Request@@ -70,8 +69,7 @@ , _ufeTopicARN = pTopicARN_ } --- | The ARN of the assessment template that is used during the event for--- which you want to stop receiving SNS notifications.+-- | The ARN of the assessment template that is used during the event for which you want to stop receiving SNS notifications. ufeResourceARN :: Lens' UnsubscribeFromEvent Text ufeResourceARN = lens _ufeResourceARN (\ s a -> s{_ufeResourceARN = a});
gen/Network/AWS/Inspector/UpdateAssessmentTarget.hs view
@@ -18,8 +18,7 @@ -- Stability : auto-generated -- Portability : non-portable (GHC extensions) ----- Updates the assessment target that is specified by the ARN of the--- assessment target.+-- Updates the assessment target that is specified by the ARN of the assessment target. module Network.AWS.Inspector.UpdateAssessmentTarget ( -- * Creating a Request@@ -78,8 +77,7 @@ uatAssessmentTargetName :: Lens' UpdateAssessmentTarget Text uatAssessmentTargetName = lens _uatAssessmentTargetName (\ s a -> s{_uatAssessmentTargetName = a}); --- | The ARN of the resource group that is used to specify the new resource--- group to associate with the assessment target.+-- | The ARN of the resource group that is used to specify the new resource group to associate with the assessment target. uatResourceGroupARN :: Lens' UpdateAssessmentTarget Text uatResourceGroupARN = lens _uatResourceGroupARN (\ s a -> s{_uatResourceGroupARN = a});
test/Test/AWS/Gen/Inspector.hs view
@@ -28,199 +28,199 @@ -- fixtures :: TestTree -- fixtures = -- [ testGroup "request"--- [ testGetTelemetryMetadata $+-- [ requestGetTelemetryMetadata $ -- getTelemetryMetadata ----- , testListFindings $+-- , requestListFindings $ -- listFindings ----- , testListAssessmentTemplates $+-- , requestListAssessmentTemplates $ -- listAssessmentTemplates ----- , testSubscribeToEvent $+-- , requestSubscribeToEvent $ -- subscribeToEvent ----- , testListAssessmentRunAgents $+-- , requestListAssessmentRunAgents $ -- listAssessmentRunAgents ----- , testStartAssessmentRun $+-- , requestStartAssessmentRun $ -- startAssessmentRun ----- , testDeleteAssessmentTemplate $+-- , requestDeleteAssessmentTemplate $ -- deleteAssessmentTemplate ----- , testCreateAssessmentTemplate $+-- , requestCreateAssessmentTemplate $ -- createAssessmentTemplate ----- , testListTagsForResource $+-- , requestListTagsForResource $ -- listTagsForResource ----- , testSetTagsForResource $+-- , requestSetTagsForResource $ -- setTagsForResource ----- , testDescribeCrossAccountAccessRole $+-- , requestDescribeCrossAccountAccessRole $ -- describeCrossAccountAccessRole ----- , testDescribeAssessmentTemplates $+-- , requestDescribeAssessmentTemplates $ -- describeAssessmentTemplates ----- , testDescribeResourceGroups $+-- , requestDescribeResourceGroups $ -- describeResourceGroups ----- , testCreateAssessmentTarget $+-- , requestCreateAssessmentTarget $ -- createAssessmentTarget ----- , testListEventSubscriptions $+-- , requestListEventSubscriptions $ -- listEventSubscriptions ----- , testRegisterCrossAccountAccessRole $+-- , requestRegisterCrossAccountAccessRole $ -- registerCrossAccountAccessRole ----- , testListAssessmentTargets $+-- , requestListAssessmentTargets $ -- listAssessmentTargets ----- , testCreateResourceGroup $+-- , requestCreateResourceGroup $ -- createResourceGroup ----- , testDescribeRulesPackages $+-- , requestDescribeRulesPackages $ -- describeRulesPackages ----- , testStopAssessmentRun $+-- , requestStopAssessmentRun $ -- stopAssessmentRun ----- , testPreviewAgents $+-- , requestPreviewAgents $ -- previewAgents ----- , testDescribeFindings $+-- , requestDescribeFindings $ -- describeFindings ----- , testAddAttributesToFindings $+-- , requestAddAttributesToFindings $ -- addAttributesToFindings ----- , testUpdateAssessmentTarget $+-- , requestUpdateAssessmentTarget $ -- updateAssessmentTarget ----- , testDeleteAssessmentTarget $+-- , requestDeleteAssessmentTarget $ -- deleteAssessmentTarget ----- , testDeleteAssessmentRun $+-- , requestDeleteAssessmentRun $ -- deleteAssessmentRun ----- , testListAssessmentRuns $+-- , requestListAssessmentRuns $ -- listAssessmentRuns ----- , testListRulesPackages $+-- , requestListRulesPackages $ -- listRulesPackages ----- , testDescribeAssessmentRuns $+-- , requestDescribeAssessmentRuns $ -- describeAssessmentRuns ----- , testUnsubscribeFromEvent $+-- , requestUnsubscribeFromEvent $ -- unsubscribeFromEvent ----- , testRemoveAttributesFromFindings $+-- , requestRemoveAttributesFromFindings $ -- removeAttributesFromFindings ----- , testDescribeAssessmentTargets $+-- , requestDescribeAssessmentTargets $ -- describeAssessmentTargets -- -- ] -- , testGroup "response"--- [ testGetTelemetryMetadataResponse $+-- [ responseGetTelemetryMetadata $ -- getTelemetryMetadataResponse ----- , testListFindingsResponse $+-- , responseListFindings $ -- listFindingsResponse ----- , testListAssessmentTemplatesResponse $+-- , responseListAssessmentTemplates $ -- listAssessmentTemplatesResponse ----- , testSubscribeToEventResponse $+-- , responseSubscribeToEvent $ -- subscribeToEventResponse ----- , testListAssessmentRunAgentsResponse $+-- , responseListAssessmentRunAgents $ -- listAssessmentRunAgentsResponse ----- , testStartAssessmentRunResponse $+-- , responseStartAssessmentRun $ -- startAssessmentRunResponse ----- , testDeleteAssessmentTemplateResponse $+-- , responseDeleteAssessmentTemplate $ -- deleteAssessmentTemplateResponse ----- , testCreateAssessmentTemplateResponse $+-- , responseCreateAssessmentTemplate $ -- createAssessmentTemplateResponse ----- , testListTagsForResourceResponse $+-- , responseListTagsForResource $ -- listTagsForResourceResponse ----- , testSetTagsForResourceResponse $+-- , responseSetTagsForResource $ -- setTagsForResourceResponse ----- , testDescribeCrossAccountAccessRoleResponse $+-- , responseDescribeCrossAccountAccessRole $ -- describeCrossAccountAccessRoleResponse ----- , testDescribeAssessmentTemplatesResponse $+-- , responseDescribeAssessmentTemplates $ -- describeAssessmentTemplatesResponse ----- , testDescribeResourceGroupsResponse $+-- , responseDescribeResourceGroups $ -- describeResourceGroupsResponse ----- , testCreateAssessmentTargetResponse $+-- , responseCreateAssessmentTarget $ -- createAssessmentTargetResponse ----- , testListEventSubscriptionsResponse $+-- , responseListEventSubscriptions $ -- listEventSubscriptionsResponse ----- , testRegisterCrossAccountAccessRoleResponse $+-- , responseRegisterCrossAccountAccessRole $ -- registerCrossAccountAccessRoleResponse ----- , testListAssessmentTargetsResponse $+-- , responseListAssessmentTargets $ -- listAssessmentTargetsResponse ----- , testCreateResourceGroupResponse $+-- , responseCreateResourceGroup $ -- createResourceGroupResponse ----- , testDescribeRulesPackagesResponse $+-- , responseDescribeRulesPackages $ -- describeRulesPackagesResponse ----- , testStopAssessmentRunResponse $+-- , responseStopAssessmentRun $ -- stopAssessmentRunResponse ----- , testPreviewAgentsResponse $+-- , responsePreviewAgents $ -- previewAgentsResponse ----- , testDescribeFindingsResponse $+-- , responseDescribeFindings $ -- describeFindingsResponse ----- , testAddAttributesToFindingsResponse $+-- , responseAddAttributesToFindings $ -- addAttributesToFindingsResponse ----- , testUpdateAssessmentTargetResponse $+-- , responseUpdateAssessmentTarget $ -- updateAssessmentTargetResponse ----- , testDeleteAssessmentTargetResponse $+-- , responseDeleteAssessmentTarget $ -- deleteAssessmentTargetResponse ----- , testDeleteAssessmentRunResponse $+-- , responseDeleteAssessmentRun $ -- deleteAssessmentRunResponse ----- , testListAssessmentRunsResponse $+-- , responseListAssessmentRuns $ -- listAssessmentRunsResponse ----- , testListRulesPackagesResponse $+-- , responseListRulesPackages $ -- listRulesPackagesResponse ----- , testDescribeAssessmentRunsResponse $+-- , responseDescribeAssessmentRuns $ -- describeAssessmentRunsResponse ----- , testUnsubscribeFromEventResponse $+-- , responseUnsubscribeFromEvent $ -- unsubscribeFromEventResponse ----- , testRemoveAttributesFromFindingsResponse $+-- , responseRemoveAttributesFromFindings $ -- removeAttributesFromFindingsResponse ----- , testDescribeAssessmentTargetsResponse $+-- , responseDescribeAssessmentTargets $ -- describeAssessmentTargetsResponse -- -- ]@@ -228,387 +228,387 @@ -- Requests -testGetTelemetryMetadata :: GetTelemetryMetadata -> TestTree-testGetTelemetryMetadata = req+requestGetTelemetryMetadata :: GetTelemetryMetadata -> TestTree+requestGetTelemetryMetadata = req "GetTelemetryMetadata" "fixture/GetTelemetryMetadata.yaml" -testListFindings :: ListFindings -> TestTree-testListFindings = req+requestListFindings :: ListFindings -> TestTree+requestListFindings = req "ListFindings" "fixture/ListFindings.yaml" -testListAssessmentTemplates :: ListAssessmentTemplates -> TestTree-testListAssessmentTemplates = req+requestListAssessmentTemplates :: ListAssessmentTemplates -> TestTree+requestListAssessmentTemplates = req "ListAssessmentTemplates" "fixture/ListAssessmentTemplates.yaml" -testSubscribeToEvent :: SubscribeToEvent -> TestTree-testSubscribeToEvent = req+requestSubscribeToEvent :: SubscribeToEvent -> TestTree+requestSubscribeToEvent = req "SubscribeToEvent" "fixture/SubscribeToEvent.yaml" -testListAssessmentRunAgents :: ListAssessmentRunAgents -> TestTree-testListAssessmentRunAgents = req+requestListAssessmentRunAgents :: ListAssessmentRunAgents -> TestTree+requestListAssessmentRunAgents = req "ListAssessmentRunAgents" "fixture/ListAssessmentRunAgents.yaml" -testStartAssessmentRun :: StartAssessmentRun -> TestTree-testStartAssessmentRun = req+requestStartAssessmentRun :: StartAssessmentRun -> TestTree+requestStartAssessmentRun = req "StartAssessmentRun" "fixture/StartAssessmentRun.yaml" -testDeleteAssessmentTemplate :: DeleteAssessmentTemplate -> TestTree-testDeleteAssessmentTemplate = req+requestDeleteAssessmentTemplate :: DeleteAssessmentTemplate -> TestTree+requestDeleteAssessmentTemplate = req "DeleteAssessmentTemplate" "fixture/DeleteAssessmentTemplate.yaml" -testCreateAssessmentTemplate :: CreateAssessmentTemplate -> TestTree-testCreateAssessmentTemplate = req+requestCreateAssessmentTemplate :: CreateAssessmentTemplate -> TestTree+requestCreateAssessmentTemplate = req "CreateAssessmentTemplate" "fixture/CreateAssessmentTemplate.yaml" -testListTagsForResource :: ListTagsForResource -> TestTree-testListTagsForResource = req+requestListTagsForResource :: ListTagsForResource -> TestTree+requestListTagsForResource = req "ListTagsForResource" "fixture/ListTagsForResource.yaml" -testSetTagsForResource :: SetTagsForResource -> TestTree-testSetTagsForResource = req+requestSetTagsForResource :: SetTagsForResource -> TestTree+requestSetTagsForResource = req "SetTagsForResource" "fixture/SetTagsForResource.yaml" -testDescribeCrossAccountAccessRole :: DescribeCrossAccountAccessRole -> TestTree-testDescribeCrossAccountAccessRole = req+requestDescribeCrossAccountAccessRole :: DescribeCrossAccountAccessRole -> TestTree+requestDescribeCrossAccountAccessRole = req "DescribeCrossAccountAccessRole" "fixture/DescribeCrossAccountAccessRole.yaml" -testDescribeAssessmentTemplates :: DescribeAssessmentTemplates -> TestTree-testDescribeAssessmentTemplates = req+requestDescribeAssessmentTemplates :: DescribeAssessmentTemplates -> TestTree+requestDescribeAssessmentTemplates = req "DescribeAssessmentTemplates" "fixture/DescribeAssessmentTemplates.yaml" -testDescribeResourceGroups :: DescribeResourceGroups -> TestTree-testDescribeResourceGroups = req+requestDescribeResourceGroups :: DescribeResourceGroups -> TestTree+requestDescribeResourceGroups = req "DescribeResourceGroups" "fixture/DescribeResourceGroups.yaml" -testCreateAssessmentTarget :: CreateAssessmentTarget -> TestTree-testCreateAssessmentTarget = req+requestCreateAssessmentTarget :: CreateAssessmentTarget -> TestTree+requestCreateAssessmentTarget = req "CreateAssessmentTarget" "fixture/CreateAssessmentTarget.yaml" -testListEventSubscriptions :: ListEventSubscriptions -> TestTree-testListEventSubscriptions = req+requestListEventSubscriptions :: ListEventSubscriptions -> TestTree+requestListEventSubscriptions = req "ListEventSubscriptions" "fixture/ListEventSubscriptions.yaml" -testRegisterCrossAccountAccessRole :: RegisterCrossAccountAccessRole -> TestTree-testRegisterCrossAccountAccessRole = req+requestRegisterCrossAccountAccessRole :: RegisterCrossAccountAccessRole -> TestTree+requestRegisterCrossAccountAccessRole = req "RegisterCrossAccountAccessRole" "fixture/RegisterCrossAccountAccessRole.yaml" -testListAssessmentTargets :: ListAssessmentTargets -> TestTree-testListAssessmentTargets = req+requestListAssessmentTargets :: ListAssessmentTargets -> TestTree+requestListAssessmentTargets = req "ListAssessmentTargets" "fixture/ListAssessmentTargets.yaml" -testCreateResourceGroup :: CreateResourceGroup -> TestTree-testCreateResourceGroup = req+requestCreateResourceGroup :: CreateResourceGroup -> TestTree+requestCreateResourceGroup = req "CreateResourceGroup" "fixture/CreateResourceGroup.yaml" -testDescribeRulesPackages :: DescribeRulesPackages -> TestTree-testDescribeRulesPackages = req+requestDescribeRulesPackages :: DescribeRulesPackages -> TestTree+requestDescribeRulesPackages = req "DescribeRulesPackages" "fixture/DescribeRulesPackages.yaml" -testStopAssessmentRun :: StopAssessmentRun -> TestTree-testStopAssessmentRun = req+requestStopAssessmentRun :: StopAssessmentRun -> TestTree+requestStopAssessmentRun = req "StopAssessmentRun" "fixture/StopAssessmentRun.yaml" -testPreviewAgents :: PreviewAgents -> TestTree-testPreviewAgents = req+requestPreviewAgents :: PreviewAgents -> TestTree+requestPreviewAgents = req "PreviewAgents" "fixture/PreviewAgents.yaml" -testDescribeFindings :: DescribeFindings -> TestTree-testDescribeFindings = req+requestDescribeFindings :: DescribeFindings -> TestTree+requestDescribeFindings = req "DescribeFindings" "fixture/DescribeFindings.yaml" -testAddAttributesToFindings :: AddAttributesToFindings -> TestTree-testAddAttributesToFindings = req+requestAddAttributesToFindings :: AddAttributesToFindings -> TestTree+requestAddAttributesToFindings = req "AddAttributesToFindings" "fixture/AddAttributesToFindings.yaml" -testUpdateAssessmentTarget :: UpdateAssessmentTarget -> TestTree-testUpdateAssessmentTarget = req+requestUpdateAssessmentTarget :: UpdateAssessmentTarget -> TestTree+requestUpdateAssessmentTarget = req "UpdateAssessmentTarget" "fixture/UpdateAssessmentTarget.yaml" -testDeleteAssessmentTarget :: DeleteAssessmentTarget -> TestTree-testDeleteAssessmentTarget = req+requestDeleteAssessmentTarget :: DeleteAssessmentTarget -> TestTree+requestDeleteAssessmentTarget = req "DeleteAssessmentTarget" "fixture/DeleteAssessmentTarget.yaml" -testDeleteAssessmentRun :: DeleteAssessmentRun -> TestTree-testDeleteAssessmentRun = req+requestDeleteAssessmentRun :: DeleteAssessmentRun -> TestTree+requestDeleteAssessmentRun = req "DeleteAssessmentRun" "fixture/DeleteAssessmentRun.yaml" -testListAssessmentRuns :: ListAssessmentRuns -> TestTree-testListAssessmentRuns = req+requestListAssessmentRuns :: ListAssessmentRuns -> TestTree+requestListAssessmentRuns = req "ListAssessmentRuns" "fixture/ListAssessmentRuns.yaml" -testListRulesPackages :: ListRulesPackages -> TestTree-testListRulesPackages = req+requestListRulesPackages :: ListRulesPackages -> TestTree+requestListRulesPackages = req "ListRulesPackages" "fixture/ListRulesPackages.yaml" -testDescribeAssessmentRuns :: DescribeAssessmentRuns -> TestTree-testDescribeAssessmentRuns = req+requestDescribeAssessmentRuns :: DescribeAssessmentRuns -> TestTree+requestDescribeAssessmentRuns = req "DescribeAssessmentRuns" "fixture/DescribeAssessmentRuns.yaml" -testUnsubscribeFromEvent :: UnsubscribeFromEvent -> TestTree-testUnsubscribeFromEvent = req+requestUnsubscribeFromEvent :: UnsubscribeFromEvent -> TestTree+requestUnsubscribeFromEvent = req "UnsubscribeFromEvent" "fixture/UnsubscribeFromEvent.yaml" -testRemoveAttributesFromFindings :: RemoveAttributesFromFindings -> TestTree-testRemoveAttributesFromFindings = req+requestRemoveAttributesFromFindings :: RemoveAttributesFromFindings -> TestTree+requestRemoveAttributesFromFindings = req "RemoveAttributesFromFindings" "fixture/RemoveAttributesFromFindings.yaml" -testDescribeAssessmentTargets :: DescribeAssessmentTargets -> TestTree-testDescribeAssessmentTargets = req+requestDescribeAssessmentTargets :: DescribeAssessmentTargets -> TestTree+requestDescribeAssessmentTargets = req "DescribeAssessmentTargets" "fixture/DescribeAssessmentTargets.yaml" -- Responses -testGetTelemetryMetadataResponse :: GetTelemetryMetadataResponse -> TestTree-testGetTelemetryMetadataResponse = res+responseGetTelemetryMetadata :: GetTelemetryMetadataResponse -> TestTree+responseGetTelemetryMetadata = res "GetTelemetryMetadataResponse" "fixture/GetTelemetryMetadataResponse.proto" inspector (Proxy :: Proxy GetTelemetryMetadata) -testListFindingsResponse :: ListFindingsResponse -> TestTree-testListFindingsResponse = res+responseListFindings :: ListFindingsResponse -> TestTree+responseListFindings = res "ListFindingsResponse" "fixture/ListFindingsResponse.proto" inspector (Proxy :: Proxy ListFindings) -testListAssessmentTemplatesResponse :: ListAssessmentTemplatesResponse -> TestTree-testListAssessmentTemplatesResponse = res+responseListAssessmentTemplates :: ListAssessmentTemplatesResponse -> TestTree+responseListAssessmentTemplates = res "ListAssessmentTemplatesResponse" "fixture/ListAssessmentTemplatesResponse.proto" inspector (Proxy :: Proxy ListAssessmentTemplates) -testSubscribeToEventResponse :: SubscribeToEventResponse -> TestTree-testSubscribeToEventResponse = res+responseSubscribeToEvent :: SubscribeToEventResponse -> TestTree+responseSubscribeToEvent = res "SubscribeToEventResponse" "fixture/SubscribeToEventResponse.proto" inspector (Proxy :: Proxy SubscribeToEvent) -testListAssessmentRunAgentsResponse :: ListAssessmentRunAgentsResponse -> TestTree-testListAssessmentRunAgentsResponse = res+responseListAssessmentRunAgents :: ListAssessmentRunAgentsResponse -> TestTree+responseListAssessmentRunAgents = res "ListAssessmentRunAgentsResponse" "fixture/ListAssessmentRunAgentsResponse.proto" inspector (Proxy :: Proxy ListAssessmentRunAgents) -testStartAssessmentRunResponse :: StartAssessmentRunResponse -> TestTree-testStartAssessmentRunResponse = res+responseStartAssessmentRun :: StartAssessmentRunResponse -> TestTree+responseStartAssessmentRun = res "StartAssessmentRunResponse" "fixture/StartAssessmentRunResponse.proto" inspector (Proxy :: Proxy StartAssessmentRun) -testDeleteAssessmentTemplateResponse :: DeleteAssessmentTemplateResponse -> TestTree-testDeleteAssessmentTemplateResponse = res+responseDeleteAssessmentTemplate :: DeleteAssessmentTemplateResponse -> TestTree+responseDeleteAssessmentTemplate = res "DeleteAssessmentTemplateResponse" "fixture/DeleteAssessmentTemplateResponse.proto" inspector (Proxy :: Proxy DeleteAssessmentTemplate) -testCreateAssessmentTemplateResponse :: CreateAssessmentTemplateResponse -> TestTree-testCreateAssessmentTemplateResponse = res+responseCreateAssessmentTemplate :: CreateAssessmentTemplateResponse -> TestTree+responseCreateAssessmentTemplate = res "CreateAssessmentTemplateResponse" "fixture/CreateAssessmentTemplateResponse.proto" inspector (Proxy :: Proxy CreateAssessmentTemplate) -testListTagsForResourceResponse :: ListTagsForResourceResponse -> TestTree-testListTagsForResourceResponse = res+responseListTagsForResource :: ListTagsForResourceResponse -> TestTree+responseListTagsForResource = res "ListTagsForResourceResponse" "fixture/ListTagsForResourceResponse.proto" inspector (Proxy :: Proxy ListTagsForResource) -testSetTagsForResourceResponse :: SetTagsForResourceResponse -> TestTree-testSetTagsForResourceResponse = res+responseSetTagsForResource :: SetTagsForResourceResponse -> TestTree+responseSetTagsForResource = res "SetTagsForResourceResponse" "fixture/SetTagsForResourceResponse.proto" inspector (Proxy :: Proxy SetTagsForResource) -testDescribeCrossAccountAccessRoleResponse :: DescribeCrossAccountAccessRoleResponse -> TestTree-testDescribeCrossAccountAccessRoleResponse = res+responseDescribeCrossAccountAccessRole :: DescribeCrossAccountAccessRoleResponse -> TestTree+responseDescribeCrossAccountAccessRole = res "DescribeCrossAccountAccessRoleResponse" "fixture/DescribeCrossAccountAccessRoleResponse.proto" inspector (Proxy :: Proxy DescribeCrossAccountAccessRole) -testDescribeAssessmentTemplatesResponse :: DescribeAssessmentTemplatesResponse -> TestTree-testDescribeAssessmentTemplatesResponse = res+responseDescribeAssessmentTemplates :: DescribeAssessmentTemplatesResponse -> TestTree+responseDescribeAssessmentTemplates = res "DescribeAssessmentTemplatesResponse" "fixture/DescribeAssessmentTemplatesResponse.proto" inspector (Proxy :: Proxy DescribeAssessmentTemplates) -testDescribeResourceGroupsResponse :: DescribeResourceGroupsResponse -> TestTree-testDescribeResourceGroupsResponse = res+responseDescribeResourceGroups :: DescribeResourceGroupsResponse -> TestTree+responseDescribeResourceGroups = res "DescribeResourceGroupsResponse" "fixture/DescribeResourceGroupsResponse.proto" inspector (Proxy :: Proxy DescribeResourceGroups) -testCreateAssessmentTargetResponse :: CreateAssessmentTargetResponse -> TestTree-testCreateAssessmentTargetResponse = res+responseCreateAssessmentTarget :: CreateAssessmentTargetResponse -> TestTree+responseCreateAssessmentTarget = res "CreateAssessmentTargetResponse" "fixture/CreateAssessmentTargetResponse.proto" inspector (Proxy :: Proxy CreateAssessmentTarget) -testListEventSubscriptionsResponse :: ListEventSubscriptionsResponse -> TestTree-testListEventSubscriptionsResponse = res+responseListEventSubscriptions :: ListEventSubscriptionsResponse -> TestTree+responseListEventSubscriptions = res "ListEventSubscriptionsResponse" "fixture/ListEventSubscriptionsResponse.proto" inspector (Proxy :: Proxy ListEventSubscriptions) -testRegisterCrossAccountAccessRoleResponse :: RegisterCrossAccountAccessRoleResponse -> TestTree-testRegisterCrossAccountAccessRoleResponse = res+responseRegisterCrossAccountAccessRole :: RegisterCrossAccountAccessRoleResponse -> TestTree+responseRegisterCrossAccountAccessRole = res "RegisterCrossAccountAccessRoleResponse" "fixture/RegisterCrossAccountAccessRoleResponse.proto" inspector (Proxy :: Proxy RegisterCrossAccountAccessRole) -testListAssessmentTargetsResponse :: ListAssessmentTargetsResponse -> TestTree-testListAssessmentTargetsResponse = res+responseListAssessmentTargets :: ListAssessmentTargetsResponse -> TestTree+responseListAssessmentTargets = res "ListAssessmentTargetsResponse" "fixture/ListAssessmentTargetsResponse.proto" inspector (Proxy :: Proxy ListAssessmentTargets) -testCreateResourceGroupResponse :: CreateResourceGroupResponse -> TestTree-testCreateResourceGroupResponse = res+responseCreateResourceGroup :: CreateResourceGroupResponse -> TestTree+responseCreateResourceGroup = res "CreateResourceGroupResponse" "fixture/CreateResourceGroupResponse.proto" inspector (Proxy :: Proxy CreateResourceGroup) -testDescribeRulesPackagesResponse :: DescribeRulesPackagesResponse -> TestTree-testDescribeRulesPackagesResponse = res+responseDescribeRulesPackages :: DescribeRulesPackagesResponse -> TestTree+responseDescribeRulesPackages = res "DescribeRulesPackagesResponse" "fixture/DescribeRulesPackagesResponse.proto" inspector (Proxy :: Proxy DescribeRulesPackages) -testStopAssessmentRunResponse :: StopAssessmentRunResponse -> TestTree-testStopAssessmentRunResponse = res+responseStopAssessmentRun :: StopAssessmentRunResponse -> TestTree+responseStopAssessmentRun = res "StopAssessmentRunResponse" "fixture/StopAssessmentRunResponse.proto" inspector (Proxy :: Proxy StopAssessmentRun) -testPreviewAgentsResponse :: PreviewAgentsResponse -> TestTree-testPreviewAgentsResponse = res+responsePreviewAgents :: PreviewAgentsResponse -> TestTree+responsePreviewAgents = res "PreviewAgentsResponse" "fixture/PreviewAgentsResponse.proto" inspector (Proxy :: Proxy PreviewAgents) -testDescribeFindingsResponse :: DescribeFindingsResponse -> TestTree-testDescribeFindingsResponse = res+responseDescribeFindings :: DescribeFindingsResponse -> TestTree+responseDescribeFindings = res "DescribeFindingsResponse" "fixture/DescribeFindingsResponse.proto" inspector (Proxy :: Proxy DescribeFindings) -testAddAttributesToFindingsResponse :: AddAttributesToFindingsResponse -> TestTree-testAddAttributesToFindingsResponse = res+responseAddAttributesToFindings :: AddAttributesToFindingsResponse -> TestTree+responseAddAttributesToFindings = res "AddAttributesToFindingsResponse" "fixture/AddAttributesToFindingsResponse.proto" inspector (Proxy :: Proxy AddAttributesToFindings) -testUpdateAssessmentTargetResponse :: UpdateAssessmentTargetResponse -> TestTree-testUpdateAssessmentTargetResponse = res+responseUpdateAssessmentTarget :: UpdateAssessmentTargetResponse -> TestTree+responseUpdateAssessmentTarget = res "UpdateAssessmentTargetResponse" "fixture/UpdateAssessmentTargetResponse.proto" inspector (Proxy :: Proxy UpdateAssessmentTarget) -testDeleteAssessmentTargetResponse :: DeleteAssessmentTargetResponse -> TestTree-testDeleteAssessmentTargetResponse = res+responseDeleteAssessmentTarget :: DeleteAssessmentTargetResponse -> TestTree+responseDeleteAssessmentTarget = res "DeleteAssessmentTargetResponse" "fixture/DeleteAssessmentTargetResponse.proto" inspector (Proxy :: Proxy DeleteAssessmentTarget) -testDeleteAssessmentRunResponse :: DeleteAssessmentRunResponse -> TestTree-testDeleteAssessmentRunResponse = res+responseDeleteAssessmentRun :: DeleteAssessmentRunResponse -> TestTree+responseDeleteAssessmentRun = res "DeleteAssessmentRunResponse" "fixture/DeleteAssessmentRunResponse.proto" inspector (Proxy :: Proxy DeleteAssessmentRun) -testListAssessmentRunsResponse :: ListAssessmentRunsResponse -> TestTree-testListAssessmentRunsResponse = res+responseListAssessmentRuns :: ListAssessmentRunsResponse -> TestTree+responseListAssessmentRuns = res "ListAssessmentRunsResponse" "fixture/ListAssessmentRunsResponse.proto" inspector (Proxy :: Proxy ListAssessmentRuns) -testListRulesPackagesResponse :: ListRulesPackagesResponse -> TestTree-testListRulesPackagesResponse = res+responseListRulesPackages :: ListRulesPackagesResponse -> TestTree+responseListRulesPackages = res "ListRulesPackagesResponse" "fixture/ListRulesPackagesResponse.proto" inspector (Proxy :: Proxy ListRulesPackages) -testDescribeAssessmentRunsResponse :: DescribeAssessmentRunsResponse -> TestTree-testDescribeAssessmentRunsResponse = res+responseDescribeAssessmentRuns :: DescribeAssessmentRunsResponse -> TestTree+responseDescribeAssessmentRuns = res "DescribeAssessmentRunsResponse" "fixture/DescribeAssessmentRunsResponse.proto" inspector (Proxy :: Proxy DescribeAssessmentRuns) -testUnsubscribeFromEventResponse :: UnsubscribeFromEventResponse -> TestTree-testUnsubscribeFromEventResponse = res+responseUnsubscribeFromEvent :: UnsubscribeFromEventResponse -> TestTree+responseUnsubscribeFromEvent = res "UnsubscribeFromEventResponse" "fixture/UnsubscribeFromEventResponse.proto" inspector (Proxy :: Proxy UnsubscribeFromEvent) -testRemoveAttributesFromFindingsResponse :: RemoveAttributesFromFindingsResponse -> TestTree-testRemoveAttributesFromFindingsResponse = res+responseRemoveAttributesFromFindings :: RemoveAttributesFromFindingsResponse -> TestTree+responseRemoveAttributesFromFindings = res "RemoveAttributesFromFindingsResponse" "fixture/RemoveAttributesFromFindingsResponse.proto" inspector (Proxy :: Proxy RemoveAttributesFromFindings) -testDescribeAssessmentTargetsResponse :: DescribeAssessmentTargetsResponse -> TestTree-testDescribeAssessmentTargetsResponse = res+responseDescribeAssessmentTargets :: DescribeAssessmentTargetsResponse -> TestTree+responseDescribeAssessmentTargets = res "DescribeAssessmentTargetsResponse" "fixture/DescribeAssessmentTargetsResponse.proto" inspector